Personal Nix setup
0
fork

Configure Feed

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

Add switchboard

+14 -4
+3 -3
flake.lock
··· 886 886 ] 887 887 }, 888 888 "locked": { 889 - "lastModified": 1747755255, 890 - "narHash": "sha256-BaBRqPKEWHfR5J+h6z7XHwEa4sSjf0tuYr0g1ldyPvk=", 889 + "lastModified": 1747901587, 890 + "narHash": "sha256-woibJpFc92skmZdLRC1NtLOq/g15fe3HzHTWlx15K1c=", 891 891 "owner": "kitten", 892 892 "repo": "system-shell", 893 - "rev": "a4c72b7ac3f2c403868e033c47991d5a535648f8", 893 + "rev": "dcf54ab46c3bb697f9c36e210a51f34f47985d6c", 894 894 "type": "github" 895 895 }, 896 896 "original": {
+11 -1
home/desktop/tools.nix
··· 14 14 }; 15 15 16 16 config = mkIf cfg.tools.enable { 17 - home.packages = with pkgs; [ 17 + home.packages = with pkgs; let 18 + switchboard = (pkgs.pantheon.switchboard-with-plugs.override { 19 + useDefaultPlugs = false; 20 + plugs = with pkgs.pantheon; [ 21 + switchboard-plug-sound 22 + switchboard-plug-network 23 + switchboard-plug-bluetooth 24 + ]; 25 + }); 26 + in [ 18 27 pwvucontrol 19 28 mission-center 29 + switchboard 20 30 ]; 21 31 }; 22 32 }