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"; -}