snowflake/modules/users.nix
2024-12-11 15:52:42 -05:00

18 lines
308 B
Nix

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