nix-config/modules/home-manager/base.nix

15 lines
297 B
Nix
Raw Normal View History

{ config, ... }:
{
flake.modules.homeManager.base = args: {
home = {
homeDirectory = "/home/${config.flake.meta.owner.username}";
username = config.flake.meta.owner.username;
};
programs.home-manager.enable = true;
systemd.user.startServices = "sd-switch";
};
}