diff --git a/hosts/pixnix/default.nix b/hosts/pixnix/default.nix index 897e9ea..bfa20e3 100644 --- a/hosts/pixnix/default.nix +++ b/hosts/pixnix/default.nix @@ -16,13 +16,6 @@ ../common/optional/sshd.nix ]; - boot = { - loader = { - systemd-boot.enable = true; - efi.canTouchEfiVariables = true; - }; - }; - networking = { hostName = "pixnix"; networkmanager.enable = true; diff --git a/hosts/pixnix/hardware-configuration.nix b/hosts/pixnix/hardware-configuration.nix index 0b35938..3765270 100644 --- a/hosts/pixnix/hardware-configuration.nix +++ b/hosts/pixnix/hardware-configuration.nix @@ -12,6 +12,13 @@ }; kernelModules = [ "kvm-intel" ]; extraModulePackages = [ ]; + loader = { + systemd-boot = { + enable = true; + consoleMode = "max"; + }; + efi.canTouchEfiVariables = true; + }; };