From c1e09364bb412f1e09d1a680e5200d375a61694f Mon Sep 17 00:00:00 2001 From: Grigory Shipunov Date: Thu, 2 Jan 2025 15:35:05 +0000 Subject: remove obsolete infra --- hosts/noctilucent/hardware-configuration.nix | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 hosts/noctilucent/hardware-configuration.nix (limited to 'hosts/noctilucent/hardware-configuration.nix') diff --git a/hosts/noctilucent/hardware-configuration.nix b/hosts/noctilucent/hardware-configuration.nix deleted file mode 100644 index 8c35b3c..0000000 --- a/hosts/noctilucent/hardware-configuration.nix +++ /dev/null @@ -1,25 +0,0 @@ -{ modulesPath, lib, ... }: -{ - imports = [ (modulesPath + "/profiles/qemu-guest.nix") ]; - boot.loader.grub.device = "/dev/sda"; - boot.initrd.availableKernelModules = [ "ata_piix" "uhci_hcd" "xen_blkfront" "vmw_pvscsi" ]; - boot.initrd.kernelModules = [ "nvme" ]; - - fileSystems."/" = { - device = "/dev/disk/by-uuid/e9356185-9812-4873-8822-13c8aef59948"; - fsType = "ext4"; - }; - fileSystems."/boot" = { - device = "dev/disk/by-uuid/6F78-D438"; - fsType = "vfat"; - }; - - swapDevices = [ ]; - - # 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 false; - networking.interfaces.enp1s0.useDHCP = lib.mkDefault false; -} -- cgit v1.3.1