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