nix-dots/x

12 lines
143 B
Text
Raw Normal View History

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