8 lines
161 B
Nix
8 lines
161 B
Nix
# User config applicable only to darwin
|
|
{ config, ... }:
|
|
{
|
|
users.users.${config.hostSpec.username} = {
|
|
home = "/Users/${config.hostSpec.username}";
|
|
};
|
|
}
|