Rework in progress

This commit is contained in:
Bryan Ramos 2023-06-04 14:11:38 -04:00
parent fe512e2175
commit e2ca654681
11 changed files with 153 additions and 193 deletions

10
machines/desktop/me.nix Normal file
View file

@ -0,0 +1,10 @@
{ config, pkgs, lib, ... }:
{
users.users.bryan = {
isNormalUser = true;
extraGroups = [ "wheel" "networkmanager" "home-manager" "input" "video" "audio" "kvm" "libvirtd" "docker" ];
};
security.sudo.wheelNeedsPassword = false;
}