flake/users/guanranwang/darwin/presets/core.nix

14 lines
245 B
Nix
Raw Normal View History

2023-11-04 10:02:11 +00:00
{ pkgs, ... }:
{
users = {
knownUsers = [ "guanranwang" ];
users."guanranwang" = {
createHome = true;
description = "Guanran Wang";
home = "/Users/guanranwang";
shell = pkgs.fish;
uid = 501;
};
};
}