nix-config/modules/home/default.nix
2024-08-02 23:49:06 +02:00

19 lines
362 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;
};
};
}