diff options
Diffstat (limited to 'modules')
-rw-r--r-- | modules/system/default.nix | 1 | ||||
-rw-r--r-- | modules/system/laptop/default.nix | 17 |
2 files changed, 18 insertions, 0 deletions
diff --git a/modules/system/default.nix b/modules/system/default.nix index 6a1fe03a..4c1054a1 100644 --- a/modules/system/default.nix +++ b/modules/system/default.nix @@ -9,6 +9,7 @@ in { ./fonts ./hardware ./impermanence + ./laptop ./locale ./networking ./nixpkgs diff --git a/modules/system/laptop/default.nix b/modules/system/laptop/default.nix new file mode 100644 index 00000000..f70230ad --- /dev/null +++ b/modules/system/laptop/default.nix @@ -0,0 +1,17 @@ +{ + lib, + config, + ... +}: let + cfg = config.soispha.laptop; +in { + # TODO: Add an actual config to this module, instead of the implicit one in home manager. <2024-05-22> + options.soispha.laptop = { + enable = lib.mkEnableOption "Laptop improvements"; + backlight = lib.mkOption { + type = lib.types.str; + example = lib.mdDoc "intel_backlight"; + description = lib.mdDoc "Which backlight to query for the screen brightness"; + }; + }; +} |