15 lines
249 B
Nix
15 lines
249 B
Nix
{
|
|
config,
|
|
inputs,
|
|
...
|
|
}: let
|
|
inherit (config.marleyos.my) name;
|
|
in {
|
|
imports = [inputs.home-manager.darwinModules.home-manager];
|
|
|
|
config = {
|
|
home-manager.users."${name}" = {
|
|
home.homeDirectory = "/Users/${name}";
|
|
};
|
|
};
|
|
}
|