From 6c9ba6ea8800e553f14d784d0545ff25ca73e11b Mon Sep 17 00:00:00 2001 From: Amaury Date: Wed, 25 Mar 2026 19:02:14 +0100 Subject: [PATCH] update vmgaming --- hosts/vmgaming/configuration.nix | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/hosts/vmgaming/configuration.nix b/hosts/vmgaming/configuration.nix index 184957e..db1478e 100644 --- a/hosts/vmgaming/configuration.nix +++ b/hosts/vmgaming/configuration.nix @@ -14,14 +14,18 @@ boot.kernelParams = [ "console=ttyS0,115200" ]; services.getty.autologinUser = null; + boot.extraModprobeConfig = '' + options snd_hda_intel + ''; + # Update these labels to match your VM disks if they differ. fileSystems."/" = { - device = "/dev/sda2"; + device = "/dev/disk/by-uuid/5caed946-96b8-4672-a5a7-bdaa213beb76"; fsType = "ext4"; }; fileSystems."/boot" = { - device = "/dev/sda1"; + device = "/dev/disk/by-uuid/2919-0F27"; fsType = "vfat"; # options = [ "fmask=0077" "dmask=0077" ]; };