mirror of
https://github.com/willemml/dotfiles.nix.git
synced 2025-04-13 03:37:18 +00:00
11 lines
192 B
Nix
11 lines
192 B
Nix
{ writeShellApplication
|
|
, home-manager
|
|
,
|
|
}:
|
|
writeShellApplication {
|
|
name = "home-switch";
|
|
runtimeInputs = [ home-manager ];
|
|
text = ''
|
|
exec home-manager switch --flake . "$@"
|
|
'';
|
|
}
|