11 lines
188 B
Nix
11 lines
188 B
Nix
|
{ username, lib, ... }:
|
||
|
|
||
|
{
|
||
|
programs.home-manager.enable = true;
|
||
|
home = {
|
||
|
inherit username;
|
||
|
homeDirectory = lib.mkForce "/Users/${username}";
|
||
|
stateVersion = "24.11";
|
||
|
};
|
||
|
}
|