1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 18:21:07 +01:00

xautolock: fick locker script

This commit is contained in:
Kierán Meinhardt
2019-06-17 19:10:42 +02:00
parent 8f7953e598
commit da297039cd
4 changed files with 18 additions and 8 deletions

View File

@@ -70,6 +70,15 @@ in {
];
};
networkInterfaces.wireless = mkOption { type = types.str; };
promptColours =
let colours16 = types.enum [ "black" "red" "green" "yellow" "blue" "magenta" "cyan" "white" ];
in {
success = mkOption { type = colours16; default = "green"; };
failure = mkOption { type = colours16; default = "red"; };
};
fonts = {
terminal = mkOption { type = my-types.font; };
ui = mkOption { type = my-types.font; };