nix-dots/x

12 lines
141 B
Text
Raw Permalink Normal View History

2025-05-16 18:11:06 -05:00
#!/usr/bin/env bash
function switch() {
home-manager switch --flake .#$1
}
2025-12-28 20:18:45 -06:00
if [[ -n $1 ]]; then
2025-05-16 18:11:06 -05:00
switch $1
else
2025-12-28 20:18:45 -06:00
switch default
2025-05-16 18:11:06 -05:00
fi