refactoring and etc

This commit is contained in:
Matt Nish-Lapidus 2025-05-21 13:23:32 -04:00
parent 65b5562502
commit e26f4e6826
4 changed files with 92 additions and 83 deletions

View file

@ -0,0 +1,31 @@
{ 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
];
};
}