From b7f30e13b7e4680f644f674bc8b81432828f00c1 Mon Sep 17 00:00:00 2001 From: John Bowdre Date: Mon, 25 Sep 2023 10:19:51 -0500 Subject: [PATCH] pixnix: move boot.loader itmes into hardware-config --- hosts/pixnix/default.nix | 7 ------- hosts/pixnix/hardware-configuration.nix | 7 +++++++ 2 files changed, 7 insertions(+), 7 deletions(-) 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; + }; };