nixos/home-manager/common/default.nix

10 lines
278 B
Nix
Raw Normal View History

2022-11-04 00:13:21 +01:00
{ custom }: { ... }:
2021-12-22 18:14:17 +01:00
{
# Home Manager needs a bit of information about you and the
# paths it should manage.
2022-02-21 11:36:12 +01:00
home.username = custom.username;
home.homeDirectory = "/home/${custom.username}";
2022-12-01 22:43:09 +01:00
home.stateVersion = custom.version;
2022-01-12 14:45:13 +01:00
programs.home-manager.enable = true;
2021-12-22 18:14:17 +01:00
}