summaryrefslogtreecommitdiff
path: root/hosts/glados/boot.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2023-02-22 02:22:10 -0500
committerseth <[email protected]>2023-02-22 02:22:10 -0500
commit01ccb0cead584733e6c89fcad44c441fe05bc5c7 (patch)
tree54703a80882ed366b237c27f88b858f3106eb0e3 /hosts/glados/boot.nix
parent9c4a04054f5c72c3c66973b0bea06d10e042947c (diff)
switch back to alejandra
nixpkgs-fmt is weird...
Diffstat (limited to 'hosts/glados/boot.nix')
-rw-r--r--hosts/glados/boot.nix13
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"];
};
}