19 lines
318 B
Nix
19 lines
318 B
Nix
{ userData, customFunctions, ... }:
|
|
let
|
|
userName = userData.user.name;
|
|
homeDirectory = userData.paths.homeDir;
|
|
in
|
|
{
|
|
imports = customFunctions.scan {
|
|
path = ./.;
|
|
exclude = [
|
|
./default.nix
|
|
];
|
|
};
|
|
|
|
home = {
|
|
inherit homeDirectory;
|
|
username = userName;
|
|
stateVersion = "25.05";
|
|
};
|
|
}
|