mirror of
https://github.com/willemml/dotfiles.nix.git
synced 2025-04-12 19:27:17 +00:00
13 lines
279 B
Nix
13 lines
279 B
Nix
{
|
|
writeShellApplication,
|
|
home-manager,
|
|
stdenv,
|
|
}:
|
|
writeShellApplication {
|
|
name = "home-switch";
|
|
runtimeInputs = [home-manager];
|
|
text = ''
|
|
export FLAKE_CONFIG_URI=".#homeConfigurations.${stdenv.hostPlatform.system}.$USER"
|
|
exec home-manager switch "$@"
|
|
'';
|
|
}
|