about summary refs log tree commit diff stats
path: root/modules
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-05-23 18:32:23 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-05-23 18:32:23 +0200
commit6b543fb1e0489e54198db6786f2964a555b63b05 (patch)
tree560ca8754b89bde5fcc8b63e56e720545dad63d9 /modules
parentrefactor(hosts/tiamat): Adapt to the new modules for system (diff)
downloadnixos-config-6b543fb1e0489e54198db6786f2964a555b63b05.tar.gz
nixos-config-6b543fb1e0489e54198db6786f2964a555b63b05.zip
fix(modules/system): Re-add the laptop settings for home-manager comp
Diffstat (limited to 'modules')
-rw-r--r--modules/system/default.nix1
-rw-r--r--modules/system/laptop/default.nix17
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";
+    };
+  };
+}