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

13 lines
241 B
Nix
Raw Normal View History

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