nix-dots/x
2025-05-16 18:17:32 -05:00

11 lines
143 B
Bash
Executable file

#!/usr/bin/env bash
function switch() {
home-manager switch --flake .#$1
}
if [[ -n $1 ]]; then
switch $1
else
switch default
fi