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"; powerManagement.cpuFreqGovernor = lib.mkDefault "performance";
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
} }

View file

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

View file

@ -2,7 +2,7 @@
{ {
imports = [ imports = [
../../../user ../../../user/configs
./hardware.nix ./hardware.nix
./system.nix ./system.nix
]; ];

View file

@ -10,9 +10,7 @@
shell = pkgs.bash; shell = pkgs.bash;
groups = [ groups = [
"wheel" "networkmanager" "home-manager" "wheel" "networkmanager" "home-manager" "input"
"input" "video" "audio"
"kvm" "libvirtd" "docker"
]; ];
sshKeys = [ sshKeys = [