diff options
Diffstat (limited to 'systems/glados/boot.nix')
| -rw-r--r-- | systems/glados/boot.nix | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/systems/glados/boot.nix b/systems/glados/boot.nix index 7f6793e..0aa6f9e 100644 --- a/systems/glados/boot.nix +++ b/systems/glados/boot.nix @@ -3,8 +3,9 @@ pkgs, inputs, ... -}: { - imports = [inputs.lanzaboote.nixosModules.lanzaboote]; +}: +{ + imports = [ inputs.lanzaboote.nixosModules.lanzaboote ]; environment.systemPackages = with pkgs; [ sbctl @@ -15,7 +16,7 @@ initrd.systemd.enable = true; kernelPackages = pkgs.linuxPackages_latest; - kernelParams = ["amd_pstate=active"]; + kernelParams = [ "amd_pstate=active" ]; loader.systemd-boot.enable = lib.mkForce false; @@ -24,6 +25,6 @@ pkiBundle = "/etc/secureboot"; }; - supportedFilesystems = ["ntfs"]; + supportedFilesystems = [ "ntfs" ]; }; } |
