nix machine / user configurations

feat(deploy): allow deploying all hosts

ptr.pet 0c7ffc80 6ce6e5d3

verified
Changed files
+5 -1
+5 -1
deploy.nu
···
}
}
-
deploy $hostname
+
if $hostname == "all" {
+
$hosts | columns | each {|host| deploy $host}
+
} else {
+
deploy $hostname
+
}
if $inputs_updated {
try { git push }