nix-flake/modules/home/default.nix
2026-02-28 19:12:41 +07:00

13 lines
216 B
Nix

{ username, ... }: {
imports = [
./core/apps.nix
./core/cli.nix
./core/zsh.nix
];
home = {
stateVersion = "24.11";
username = "${username}";
homeDirectory = "/home/${username}";
};
}