From 90fa38c57575c5f681a28af8fa6304a3fc8e01fd Mon Sep 17 00:00:00 2001 From: Benson Chu Date: Fri, 2 Aug 2024 08:06:18 -0500 Subject: [PATCH] Laptops probably want brightness control --- common/laptop-things.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/common/laptop-things.nix b/common/laptop-things.nix index 782590c..133e5ff 100644 --- a/common/laptop-things.nix +++ b/common/laptop-things.nix @@ -21,4 +21,8 @@ # Configure console keymap console.keyMap = "dvorak"; + + environment.systemPackages = with pkgs; [ + brightnessctl + ]; }