blob: dc6d3b36bcde643bf7e92a8db0b76e072650f07b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
{
config,
lib,
...
}: let
inherit (lib) mkOption mkEnableOption types;
in {
options = {
collinux.boot = {
systemd-boot.enable = mkEnableOption "systemd-boot";
plymouth = {
enable = mkEnableOption "plymouth bootsplash";
theme = mkOption {
type = types.enum ["catppuccin" "adwaita"];
default = config.collinux.theme;
};
};
secureBoot.enable = mkEnableOption "lanzaboote";
};
};
}
|