From 107fd06c0556cea2b71bc0fd3ff19c35ada41a4c Mon Sep 17 00:00:00 2001 From: Lillian-Violet Date: Wed, 27 Dec 2023 16:27:46 +0100 Subject: [PATCH] Dry build works, let's remove that --- nixos/shodan/hardware-configuration.nix | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 nixos/shodan/hardware-configuration.nix diff --git a/nixos/shodan/hardware-configuration.nix b/nixos/shodan/hardware-configuration.nix deleted file mode 100644 index 52ea2b5..0000000 --- a/nixos/shodan/hardware-configuration.nix +++ /dev/null @@ -1,18 +0,0 @@ -{ - config, - lib, - pkgs, - modulesPath, - ... -}: { - 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/sda3"; - fsType = "ext4"; - }; - swapDevices = [{device = "/dev/sda2";}]; - nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; -}