Files
nix/core/user.nix
2025-03-22 14:17:10 -05:00

9 lines
164 B
Nix

{ config, ... }:
{
users.users.bug = {
isNormalUser = true;
description = "Bug";
extraGroups = [ "networkmanager" "wheel" ];
};
}