nix-config/modules/darwin-modules/users.nix
2025-01-21 15:56:40 -06:00

17 lines
235 B
Nix

{
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}";
};
};
};
}