Deployment and lifecycle management for Nix
0
fork

Configure Feed

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

split params and log outputs

+7 -3
+7 -3
nix/home-module.nix
··· 93 93 enable = true; 94 94 config = { 95 95 KeepAlive = false; 96 - ProgramArguments = [ "${lib.getExe cfg.package} tree upgrade" ]; 96 + ProgramArguments = [ 97 + (lib.getExe cfg.package) 98 + "tree" 99 + "upgrade" 100 + ]; 97 101 StartCalendarInterval = [ 98 102 { 99 103 Hour = 1; 100 104 Minute = 0; 101 105 } 102 106 ]; 103 - StandardErrorPath = "${config.home.homeDirectory}/Library/Logs/sower-client.log"; 104 - StandardOutPath = "${config.home.homeDirectory}/Library/Logs/sower-client.log"; 107 + StandardErrorPath = "${config.home.homeDirectory}/Library/Logs/sower-client-out.log"; 108 + StandardOutPath = "${config.home.homeDirectory}/Library/Logs/sower-client-err.log"; 105 109 }; 106 110 }; 107 111 };