diff options
author | sinanmohd <sinan@sinanmohd.com> | 2024-02-03 12:58:47 +0530 |
---|---|---|
committer | sinanmohd <sinan@sinanmohd.com> | 2024-02-03 12:58:47 +0530 |
commit | d5c0a5ff4dc3936443d6bd410c6e5f71c24f3be2 (patch) | |
tree | ed5fe0b81d92faed95bbf4bfd323b94a81d42220 /hosts/kay | |
parent | 4e20d555b2c0019cae4ec6adff89177510f2770f (diff) |
boot: move bootloader implementation to hardware-configuration
Diffstat (limited to 'hosts/kay')
-rw-r--r-- | hosts/kay/hardware-configuration.nix | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/hosts/kay/hardware-configuration.nix b/hosts/kay/hardware-configuration.nix index 3299f3f..306e9ba 100644 --- a/hosts/kay/hardware-configuration.nix +++ b/hosts/kay/hardware-configuration.nix @@ -4,6 +4,11 @@ imports = [ (modulesPath + "/installer/scan/not-detected.nix") ]; boot = { + loader = { + systemd-boot.enable = true; + efi.canTouchEfiVariables = true; + }; + kernelModules = [ "kvm-intel" ]; blacklistedKernelModules = [ "nouveau" ]; initrd.availableKernelModules = [ |