Deployment and lifecycle management for Nix
0
fork

Configure Feed

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

fix syntax error, depend on network

+3 -4
-3
.gitignore
··· 7 7 # The directory Mix downloads your dependencies sources to. 8 8 /deps/ 9 9 10 - # Where 3rd-party dependencies like ExDoc output generated docs. 11 - /doc/ 12 - 13 10 # Ignore .fetch files in case you like to edit your project deps locally. 14 11 /.fetch 15 12
+1 -1
bin/seed-ci
··· 148 148 let attic_token = $env.ATTIC_KEY? 149 149 150 150 if $attic_use or $attic_upload { 151 - if ($attic_url == null) or ($attic_cache == null) or ($attic_token == null)) { 151 + if ($attic_url == null) or ($attic_cache == null) or ($attic_token == null) { 152 152 print "‼️ attic information missing, but attic-use or attic-upload are set to true" 153 153 exit 1 154 154 }
+2
nix/nixos-client.nix
··· 48 48 ); 49 49 50 50 systemd.services.sower-client = { 51 + after = [ "network-online.target" ]; 52 + requires = [ "network-online.target" ]; 51 53 path = [ pkgs.nix ]; 52 54 53 55 serviceConfig = {