Deployment and lifecycle management for Nix
0
fork

Configure Feed

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

fix: seed-ci targetig

+4 -4
+4 -4
bin/seed-ci
··· 52 52 53 53 $configs | each { |c| 54 54 $c | update targets ($c.targets | par-each --threads 4 { |i| 55 - let buildTarget = if $c.type == "darwin" { 56 - $".#darwinConfigurations.($i.name).system" 55 + let buildTarget: list<string> = if $c.type == "darwin" { 56 + [$".#darwinConfigurations.($i.name).system"] 57 57 } else if $c.type == "dev-shell" { 58 58 $i.config.systems | each {|t| $".#devShells.($t).($i.name)" } 59 59 } else if $c.type == "home-manager" { 60 - $".#homeConfigurations.($i.name).activationPackage" 60 + [$".#homeConfigurations.($i.name).activationPackage"] 61 61 } else if $c.type == "nixos" { 62 - $".#nixosConfigurations.($i.name).config.system.build.toplevel" 62 + [$".#nixosConfigurations.($i.name).config.system.build.toplevel"] 63 63 } else if $c.type == "package" { 64 64 $i.config.systems | each {|t| $".#packages.($t).($i.name)" } 65 65 } else {