diff options
Diffstat (limited to 'hosts/glados/boot.nix')
| -rw-r--r-- | hosts/glados/boot.nix | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/hosts/glados/boot.nix b/hosts/glados/boot.nix index 4d905cb..bba1bef 100644 --- a/hosts/glados/boot.nix +++ b/hosts/glados/boot.nix @@ -1,7 +1,8 @@ -{ config -, lib -, pkgs -, ... +{ + config, + lib, + pkgs, + ... }: { environment.systemPackages = with pkgs; [ sbctl @@ -9,7 +10,7 @@ boot = { kernelPackages = config.boot.zfs.package.latestCompatibleLinuxPackages; - kernelParams = [ "nohibernate" ]; + kernelParams = ["nohibernate"]; bootspec.enable = true; loader.systemd-boot.enable = lib.mkForce false; @@ -18,6 +19,6 @@ enable = true; pkiBundle = "/etc/secureboot"; }; - supportedFilesystems = [ "zfs" "ntfs" ]; + supportedFilesystems = ["zfs" "ntfs"]; }; } |
