Personal-use NixOS configuration
0
fork

Configure Feed

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

at main 22 lines 319 B view raw
1{ 2 nixcord, 3 pkgs-firefox-addons, 4 ... 5}: 6 7{ 8 imports = [ 9 ../common/home-manager.nix 10 ]; 11 12 home-manager = { 13 # TODO: Possible to only import these modules when needed? 14 sharedModules = [ 15 nixcord.homeModules.nixcord 16 ]; 17 18 extraSpecialArgs = { 19 inherit pkgs-firefox-addons; 20 }; 21 }; 22}