Personal-use NixOS configuration
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}