me like nix
0

Configure Feed

Select the types of activity you want to include in your feed.

add brightness ctl

author
Sean Aye
date (Aug 21, 2025, 3:10 PM UTC) commit 7872f437 parent a87388b8 change-id oyyvoyln
+15 -2
+11
home.nix
··· 64 64 "Mod+2".action = { 65 65 set-column-width = "50%"; 66 66 }; 67 + "XF86MonBrightnessDown".action.spawn = [ 68 + "brightnessctl" 69 + "set" 70 + "5%-" 71 + ]; 72 + "XF86MonBrightnessUp".action.spawn = [ 73 + "brightnessctl" 74 + "set" 75 + "+5%" 76 + ]; 67 77 }; 68 78 outputs = { 69 79 "DP-1" = { ··· 131 141 nixfmt-rfc-style # nix formatter 132 142 nil # nix language server 133 143 atac # postman-like TUI 144 + trippy # network analyzer 134 145 rsync # file sync utility 135 146 udiskie # for mounting external drives 136 147 darktable # photo editing
+4 -2
hosts/framework16/configuration.nix
··· 23 23 24 24 # Enable touchpad support (enabled default in most desktopManager). 25 25 # services.xserver.libinput.enable = true; 26 + 27 + # Enable brightness control for video group 28 + hardware.brightnessctl.enable = true; 26 29 27 30 # List packages installed in system profile. To search, run: 28 31 # $ nix search wget 29 32 environment.systemPackages = with pkgs; [ 30 - # vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default. 31 - # wget 33 + brightnessctl 32 34 ]; 33 35 34 36 # Some programs need SUID wrappers, can be configured further or are