nix-config/modules/home/default.nix
2025-02-28 19:32:44 +01:00

19 lines
361 B
Nix

{config, ...}: let
inherit (config) conf;
in {
home-manager = {
useGlobalPkgs = true;
useUserPackages = true;
users.${conf.username} = {
home = {
username = "twoneis";
homeDirectory = "/home/${conf.username}";
stateVersion = conf.hmStateVersion;
};
programs.home-manager.enable = true;
};
};
}