diff --git a/homes/x86_64-linux/c4patino@tobira/default.nix b/homes/x86_64-linux/c4patino@tobira/default.nix deleted file mode 100644 index 42514b4..0000000 --- a/homes/x86_64-linux/c4patino@tobira/default.nix +++ /dev/null @@ -1,16 +0,0 @@ -{ - lib, - namespace, - ... -}: let - inherit (lib.${namespace}) enabled; -in { - ${namespace} = { - bundles = { - common = enabled; - shell = enabled; - }; - }; - - home.stateVersion = "25.11"; -} diff --git a/systems/x86_64-linux/tobira/default.nix b/systems/x86_64-linux/tobira/default.nix deleted file mode 100755 index 31062a5..0000000 --- a/systems/x86_64-linux/tobira/default.nix +++ /dev/null @@ -1,39 +0,0 @@ -{ - inputs, - lib, - namespace, - ... -}: let - inherit (lib.${namespace}) enabled; -in { - imports = [ - ./hardware-configuration.nix - - inputs.disko.nixosModules.default - (import ../../disko.nix {main = "/dev/sda";}) - ]; - - ${namespace} = { - bundles = { - common = enabled; - }; - - services = { - networking = { - httpd = enabled; - }; - }; - }; - - programs.nh = { - enable = true; - clean.enable = true; - }; - - networking = { - hostName = "tobira"; - hostId = "c98436c7"; - }; - - system.stateVersion = "25.11"; -} diff --git a/systems/x86_64-linux/tobira/hardware-configuration.nix b/systems/x86_64-linux/tobira/hardware-configuration.nix deleted file mode 100755 index 318003d..0000000 --- a/systems/x86_64-linux/tobira/hardware-configuration.nix +++ /dev/null @@ -1,44 +0,0 @@ -# Do not modify this file! It was generated by ‘nixos-generate-config’ -# and may be overwritten by future invocations. Please make changes -# to /etc/nixos/configuration.nix instead. -{ - config, - lib, - modulesPath, - ... -}: { - imports = [ - (modulesPath + "/installer/scan/not-detected.nix") - ]; - - boot = { - kernelModules = ["kvm-intel"]; - extraModulePackages = []; - - initrd = { - availableKernelModules = [ - "xhci_pci" - "ahci" - "usbhid" - "usb_storage" - "sd_mod" - "sdhci_pci" - ]; - kernelModules = []; - - systemd.tpm2.enable = false; - }; - }; - - # Enables DHCP on each ethernet and wireless interface. In case of scripted networking - # (the default) this is the recommended approach. When using systemd-networkd it's - # still possible to use this option, but it's recommended to use it in conjunction - # with explicit per-interface declarations with `networking.interfaces..useDHCP`. - networking.useDHCP = lib.mkDefault true; - - # networking.interfaces.end0.useDHCP = lib.mkDefault true; - # networking.interfaces.wlan0.useDHCP = lib.mkDefault true; - - nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; - hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; -}