pixnix: move boot.loader itmes into hardware-config

This commit is contained in:
John Bowdre 2023-09-25 10:19:51 -05:00
parent 59d7a0d427
commit b7f30e13b7
2 changed files with 7 additions and 7 deletions

View File

@ -16,13 +16,6 @@
../common/optional/sshd.nix
];
boot = {
loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
};
};
networking = {
hostName = "pixnix";
networkmanager.enable = true;

View File

@ -12,6 +12,13 @@
};
kernelModules = [ "kvm-intel" ];
extraModulePackages = [ ];
loader = {
systemd-boot = {
enable = true;
consoleMode = "max";
};
efi.canTouchEfiVariables = true;
};
};