Secure boot and wsl (#10)
- Add secure boot via lanzaboote - Add wsl flag - Remove flatpak flake
This commit is contained in:
parent
8cf9a40763
commit
32f0512ef5
10 changed files with 51 additions and 41 deletions
|
|
@ -20,6 +20,23 @@
|
|||
'';
|
||||
};
|
||||
|
||||
wsl = lib.mkOption {
|
||||
default = false;
|
||||
example = true;
|
||||
description = ''
|
||||
Runs Nix in wsl
|
||||
'';
|
||||
};
|
||||
|
||||
secureBoot = lib.mkOption {
|
||||
default = false;
|
||||
example = true;
|
||||
description = ''
|
||||
enables secure boot.
|
||||
Please don't forget to add your keys.
|
||||
'';
|
||||
};
|
||||
|
||||
useSystemdBootloader = lib.mkOption {
|
||||
default = true;
|
||||
example = false;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue