dotfiles.nix/apps/home-switch.nix
2023-03-17 14:51:38 -07:00

11 lines
192 B
Nix

{ writeShellApplication
, home-manager
,
}:
writeShellApplication {
name = "home-switch";
runtimeInputs = [ home-manager ];
text = ''
exec home-manager switch --flake . "$@"
'';
}