snowflake/modules/users.nix
2023-06-16 04:06:29 -04:00

18 lines
292 B
Nix

{pkgs, ...}: {
users = {
defaultUserShell = pkgs.nushell;
users.notoh = {
isNormalUser = true;
uid = 1000;
description = "notoh";
extraGroups = [
"networkmanager"
"wheel"
"disk"
"video"
"docker"
];
};
};
}