Personal Nix flake
nixos home-manager nix
2
fork

Configure Feed

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

fix: Disable more undesired non-graphical packages

+2 -1
+1 -1
nix/home/modules/syncthing/default.nix
··· 21 21 22 22 services.syncthing = { 23 23 enable = true; 24 - tray.enable = true; 24 + tray.enable = config.my.profiles.graphical; 25 25 cert = config.my.secrets."host.syncthing-cert".path; 26 26 key = config.my.secrets."host.syncthing-key".path; 27 27 overrideDevices = true;
+1
nix/home/profiles/server.nix
··· 11 11 // {default = osConfig.my.profiles.server or false;}; 12 12 config = lib.mkIf cfg { 13 13 my = { 14 + cli.editors.neovim.enable = false; 14 15 cli.extras.enable = false; 15 16 development.enable = false; 16 17 };