nix-flake/modules/home/default.nix
satr14 16bba9d9f3
Some checks failed
Activate Homelab Configuration / rebuild (push) Failing after 2m18s
fix bat pct and cpu overheating; add vim line numbers and cli themes to
default
2026-04-07 17:14:16 +07:00

13 lines
219 B
Nix

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