nix machine / user configurations

feat(deploy): allow deploying all hosts

ptr.pet 0c7ffc80 6ce6e5d3

verified
Changed files
+5 -1
+5 -1
deploy.nu
··· 151 151 } 152 152 } 153 153 154 - deploy $hostname 154 + if $hostname == "all" { 155 + $hosts | columns | each {|host| deploy $host} 156 + } else { 157 + deploy $hostname 158 + } 155 159 156 160 if $inputs_updated { 157 161 try { git push }