my nixos config
0
fork

Configure Feed

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

add caffeine gnome extension

chfour cbb794b7 9748ffcf

+11 -8
+11 -8
users/chfour/env-gnome.nix
··· 1 1 { pkgs, lib, ... }: 2 2 3 3 { 4 + home.packages = with pkgs.gnomeExtensions; [ 5 + appindicator 6 + runcat 7 + blur-my-shell 8 + caffeine 9 + ] ++ (with pkgs; [ 10 + gnome.gnome-terminal 11 + #blackbox-terminal # this thing keeps crashing and has generally started to piss me off 12 + ]); 13 + 4 14 dconf.settings = let 5 15 appShortcuts = [ 6 16 rec { name = command; binding = "<Super>Return"; command = "gnome-terminal"; } ··· 14 24 "appindicatorsupport@rgcjonas.gmail.com" 15 25 "runcat@kolesnikov.se" # run lil fella!!! also features eepy 16 26 "blur-my-shell@aunetx" # blur pretty,, pretty blur ................ 27 + "caffeine@patapon.info" 17 28 ]; 18 29 }; 19 30 ··· 113 124 package = pkgs.vanilla-dmz; 114 125 }; 115 126 }; 116 - 117 - home.packages = with pkgs; [ 118 - gnome.gnome-terminal 119 - #blackbox-terminal # this thing keeps crashing and has generally started to piss me off 120 - gnomeExtensions.appindicator 121 - gnomeExtensions.runcat 122 - gnomeExtensions.blur-my-shell 123 - ]; 124 127 }