diff options
author | sils <sils@sils.li> | 2023-02-04 13:52:20 +0100 |
---|---|---|
committer | sils <sils@sils.li> | 2023-02-04 13:52:20 +0100 |
commit | c368d6bd623f220755127fa4866ff342ea640b78 (patch) | |
tree | cf4c85598bc301c63c174cd9d771770fc0db213f | |
parent | Merge pull request 'User Configuration' (#12) from server1_users into server1 (diff) | |
parent | Feat: Imported the headless profile (diff) | |
download | nixos-server-c368d6bd623f220755127fa4866ff342ea640b78.tar.gz nixos-server-c368d6bd623f220755127fa4866ff342ea640b78.zip |
Merge pull request 'Imported the headless profile' (#13) from server1_headless into server1
Reviewed-on: https://git.sils.li/vhack.eu/nixos-server/pulls/13 Reviewed-by: sils <sils@sils.li>
-rw-r--r-- | hardware-configuration.nix | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/hardware-configuration.nix b/hardware-configuration.nix index 76cdb1e..d960da6 100644 --- a/hardware-configuration.nix +++ b/hardware-configuration.nix @@ -1,5 +1,8 @@ {modulesPath, ...}: { - imports = [(modulesPath + "/profiles/qemu-guest.nix")]; + imports = [ + (modulesPath + "/profiles/qemu-guest.nix") + (modulesPath + "/profiles/headless.nix") + ]; boot.loader.grub.device = "/dev/vda"; boot.initrd.availableKernelModules = ["ata_piix" "uhci_hcd" "xen_blkfront" "vmw_pvscsi"]; boot.initrd.kernelModules = ["nvme" "btrfs"]; |