nixos/home-manager/common/default.nix

9 lines
224 B
Nix

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