nix-flake/modules/home/default.nix
Satria ee28bb7c42
All checks were successful
Activate Homelab Configuration / rebuild (push) Successful in 30s
cleanup and rename
2026-03-25 18:34:03 +07:00

12 lines
198 B
Nix

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