snowflake/modules/users.nix

19 lines
294 B
Nix
Raw Normal View History

2024-02-08 12:04:15 -05:00
{ pkgs, ... }:
{
2023-05-17 12:57:11 -04:00
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
}