nixos-config/modules/system/users-emenel.nix

32 lines
471 B
Nix
Raw Permalink Normal View History

2025-05-21 13:23:32 -04:00
{ config, lib, pkgs, ... }:
{
# add user accounts
users.users.emenel = {
isNormalUser = true;
description = "emenel";
extraGroups = [
"networkmanager"
"network"
"wheel"
"uinput"
"uucp"
"dialout"
"input"
"audio"
"video"
"libvirtd"
"nvidia"
"cups"
"openrazer"
"plugdev"
"i2c-dev"
"scanner"
"lp"
];
packages = with pkgs; [
git
];
};
}