nix-flake/modules/home/default.nix
2026-02-28 21:25:46 +07:00

12 lines
196 B
Nix

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