This commit is contained in:
Bryan Ramos 2024-03-01 14:07:34 -05:00
parent 4d6a6b9bc3
commit 1d52958cde
Signed by: bryan
GPG key ID: 6ABDCD144D6643C8
4 changed files with 5 additions and 7 deletions

View file

@ -53,4 +53,3 @@
powerManagement.cpuFreqGovernor = lib.mkDefault "performance";
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
}

View file

@ -6,7 +6,8 @@
users.users = {
${config.user.name} = {
isNormalUser = true;
extraGroups = config.user.groups;
extraGroups = config.user.groups
++ [ "video" "audio" "kvm" "libvirtd" "docker" ];
openssh.authorizedKeys.keys = config.user.sshKeys;
};
};