dotfiles.nix/apps/home-switch.nix
2023-03-20 08:49:39 -07:00

12 lines
276 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 "$@"
'';
}