Deployment and lifecycle management for Nix
0
fork

Configure Feed

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

fix(client/module): rename client config to config.toml

+2 -2
+2 -2
nix/home-module.nix
··· 58 58 } 59 59 ]; 60 60 61 - xdg.configFile."sower/config.toml".source = lib.mkIf (cfg.config != null) ( 62 - toml.generate "sower-config.toml" cfg.config 61 + xdg.configFile."sower/client.toml".source = lib.mkIf (cfg.config != null) ( 62 + toml.generate "sower-client.toml" cfg.config 63 63 ); 64 64 } 65 65