diff options
author | Silas Schöffel <sils@sils.li> | 2024-10-29 22:19:59 +0100 |
---|---|---|
committer | Silas Schöffel <sils@sils.li> | 2024-10-29 22:32:24 +0100 |
commit | f377a32c1edb6a87a9e981e3db22803d4670c56a (patch) | |
tree | 60791ff515d01f935d59b4aaa420d58387f7d00e | |
parent | opengl: rename to graphics (diff) | |
download | nix-config-f377a32c1edb6a87a9e981e3db22803d4670c56a.tar.gz nix-config-f377a32c1edb6a87a9e981e3db22803d4670c56a.zip |
add laptop-light role
-rw-r--r-- | modules/nixos/roles.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/nixos/roles.nix b/modules/nixos/roles.nix index 9640bb3..69b2819 100644 --- a/modules/nixos/roles.nix +++ b/modules/nixos/roles.nix @@ -1,6 +1,6 @@ {lib, ...}: { options.role.sils = lib.mkOption { - type = lib.types.nullOr (lib.types.enum ["laptop" "undefined" "vm" "workstation"]); + type = lib.types.nullOr (lib.types.enum ["laptop" "laptop-light" "undefined" "vm" "workstation"]); default = null; description = "The role which should be applied to your configuration."; }; |