7 lines
145 B
Nix
7 lines
145 B
Nix
{config, ...}: let
|
|
inherit (config.marleyos.my) name;
|
|
in {
|
|
home-manager.users."${name}" = {
|
|
home.homeDirectory = "/home/${name}";
|
|
};
|
|
}
|