diff options
Diffstat (limited to 'system-profiles')
-rw-r--r-- | system-profiles/bcachefs.nix | 2 | ||||
-rw-r--r-- | system-profiles/lanzaboote.nix | 14 |
2 files changed, 15 insertions, 1 deletions
diff --git a/system-profiles/bcachefs.nix b/system-profiles/bcachefs.nix index cd2fad62..ebb14b62 100644 --- a/system-profiles/bcachefs.nix +++ b/system-profiles/bcachefs.nix | |||
@@ -8,7 +8,7 @@ | |||
8 | name = "bcachefs-casefold-fix"; | 8 | name = "bcachefs-casefold-fix"; |
9 | patch = null; | 9 | patch = null; |
10 | extraStructuredConfig = with lib.kernel; { | 10 | extraStructuredConfig = with lib.kernel; { |
11 | UNICODE = lib.mkForce no; | 11 | UNICODE = lib.mkOverride 90 no; |
12 | }; | 12 | }; |
13 | } | 13 | } |
14 | ]; | 14 | ]; |
diff --git a/system-profiles/lanzaboote.nix b/system-profiles/lanzaboote.nix new file mode 100644 index 00000000..f1e179cf --- /dev/null +++ b/system-profiles/lanzaboote.nix | |||
@@ -0,0 +1,14 @@ | |||
1 | { flakeInputs, pkgs, ... }: | ||
2 | { | ||
3 | imports = [ | ||
4 | flakeInputs.lanzaboote.nixosModules.lanzaboote | ||
5 | ]; | ||
6 | |||
7 | config = { | ||
8 | environment.systemPackages = [ pkgs.sbctl ]; | ||
9 | boot.lanzaboote = { | ||
10 | enable = true; | ||
11 | pkiBundle = "/var/lib/sbctl"; | ||
12 | }; | ||
13 | }; | ||
14 | } | ||