Progress rewrite further

This commit is contained in:
caem 2025-01-10 23:38:56 +01:00
parent bc6d1e6984
commit b00e1c1c9d
Signed by: caem
GPG key ID: 69A830D03203405F
15 changed files with 169 additions and 44 deletions

View file

@ -1,6 +1,7 @@
{ ... }:
{
security.rtkit.enable = true;
services.pipewire = {
enable = true;
alsa = {

View file

@ -0,0 +1,11 @@
{ pkgs, ... }:
{
boot = {
kernelModules = [ "kvm-amd" ];
extraModprobeConfig = "options kvm_amd nested=1";
};
hardware.cpu.amd.updateMicrocode = true;
hardware.firmware = with pkgs; [ linux-firmware ];
}