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 | |
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
-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"; + }; + }; +} |