mirror of
https://git.sr.ht/~neverness/ultima
synced 2025-01-09 09:13:58 +00:00
11 lines
165 B
Nix
11 lines
165 B
Nix
{ x, ... }:
|
|
with x; {
|
|
programs.home-manager = True;
|
|
home = {
|
|
username = userName;
|
|
homeDirectory = "/home/${userName}";
|
|
stateVersion = stVer;
|
|
};
|
|
}
|
|
|