snowflake/modules/users.nix

18 lines
294 B
Nix

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