diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-05-23 18:32:23 +0200 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-05-23 18:32:23 +0200 |
commit | 6b543fb1e0489e54198db6786f2964a555b63b05 (patch) | |
tree | 560ca8754b89bde5fcc8b63e56e720545dad63d9 /modules/system/laptop | |
parent | refactor(hosts/tiamat): Adapt to the new modules for system (diff) | |
download | nixos-config-6b543fb1e0489e54198db6786f2964a555b63b05.tar.gz nixos-config-6b543fb1e0489e54198db6786f2964a555b63b05.zip |
fix(modules/system): Re-add the laptop settings for home-manager comp
Diffstat (limited to 'modules/system/laptop')
-rw-r--r-- | modules/system/laptop/default.nix | 17 |
1 files changed, 17 insertions, 0 deletions
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"; + }; + }; +} |