All checks were successful
Activate Homelab Configuration / rebuild (push) Successful in 30s
12 lines
198 B
Nix
12 lines
198 B
Nix
{ username, ... }: {
|
|
imports = [
|
|
./core/shell.nix
|
|
./core/cli.nix
|
|
];
|
|
|
|
home = {
|
|
stateVersion = "24.11";
|
|
username = "${username}";
|
|
homeDirectory = "/home/${username}";
|
|
};
|
|
}
|