nixos-config/config/users/darkkirb.nix

13 lines
224 B
Nix
Raw Normal View History

{ ... }: {
users.users.darkkirb = {
createHome = true;
description = "Charlotte 🦝 Delenk";
extraGroups = [
"wheel"
];
group = "users";
home = "/home/alice";
2022-01-14 10:23:43 +00:00
isNormalUser = true;
};
}