Some checks failed
Activate Homelab Configuration / rebuild (push) Failing after 2m18s
default
13 lines
219 B
Nix
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}";
|
|
};
|
|
}
|