dotfiles.nix/apps/home-build.nix
2023-03-20 13:15:32 -07:00

13 lines
277 B
Nix

{
writeShellApplication,
home-manager,
stdenv,
}:
writeShellApplication {
name = "home-build";
runtimeInputs = [home-manager];
text = ''
export FLAKE_CONFIG_URI=".#homeConfigurations.${stdenv.hostPlatform.system}.$USER"
exec home-manager build "$@"
'';
}