nixos/home-manager/common/default.nix
2022-12-01 22:43:09 +01:00

10 lines
278 B
Nix

{ custom }: { ... }:
{
# Home Manager needs a bit of information about you and the
# paths it should manage.
home.username = custom.username;
home.homeDirectory = "/home/${custom.username}";
home.stateVersion = custom.version;
programs.home-manager.enable = true;
}