snowflake/modules/users.nix

18 lines
292 B
Nix
Raw Normal View History

2023-05-17 12:57:11 -04:00
{pkgs, ...}: {
users = {
2023-05-17 12:54:50 -04:00
defaultUserShell = pkgs.nushell;
users.notoh = {
isNormalUser = true;
2023-06-16 04:06:29 -04:00
uid = 1000;
2023-05-17 12:54:50 -04:00
description = "notoh";
extraGroups = [
2023-05-17 12:57:11 -04:00
"networkmanager"
"wheel"
"disk"
"video"
"docker"
2023-05-17 12:54:50 -04:00
];
};
};
2023-05-17 12:57:11 -04:00
}