18 lines
314 B
Nix
18 lines
314 B
Nix
{...}: {
|
|
flake.darwinModules.darwin-users = {
|
|
lib,
|
|
config,
|
|
...
|
|
}: let
|
|
host = config.host;
|
|
in {
|
|
users = {
|
|
users = {
|
|
leyla = {
|
|
name = lib.mkForce host.users.leyla.name;
|
|
home = lib.mkForce "/home/${host.users.leyla.name}";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|