nix-infra/users/default.nix

12 lines
192 B
Nix
Raw Normal View History

2023-12-17 13:33:15 +00:00
{ lib, config, pkgs, ... }: {
users.users = {
sammy = {
isNormalUser = true;
extraGroups = [ "networkmanager" "wheel" "docker" ];
shell = pkgs.nushell;
};
};
}