Personal NixOS flake

feat(hyprland): add brightnessctl and brightness binds to hyprland for laptop

+8
+4
home/emily/gui/hyprland/binds.nix
··· 29 29 30 30 "$mainMod Control_L SHIFT, L, exec, uwsm app -- hyprlock" # Lock screen 31 31 32 + # Brightness Controls 33 + ",XF86MonBrightnessDown, exec, brightnessctl s 10%-" 34 + ",XF86MonBrightnessUp, exec, brightnessctl s +10%" 35 + 32 36 # Move between windows 33 37 "$mainMod, H, movefocus, l" 34 38 "$mainMod, L, movefocus, r"
+4
laptop.nix
··· 4 4 hostName = "quartz"; 5 5 }; 6 6 7 + environment.systemPackages = with pkgs; [ 8 + brightnessctl 9 + ]; 10 + 7 11 services = { 8 12 automatic-timezoned.enable = true; 9 13 supergfxd.enable = true;