fix: fixed gnome boxes

This commit is contained in:
Eve 2025-11-27 21:53:23 -06:00
parent e21cfeab94
commit 765dde3f0f
2 changed files with 8 additions and 1 deletions

View file

@ -69,6 +69,12 @@
}; };
}; };
virtualisation.libvirtd.enable = true;
users.users.eve = {
extraGroups = [ "libvirtd" ];
};
services.tailscale.enable = true; services.tailscale.enable = true;
# We were having weird build errors so this is disabled right now # We were having weird build errors so this is disabled right now
# error: The option `devices.emergent.folders.eve_records.path' was accessed but has no value defined. Try setting the option # error: The option `devices.emergent.folders.eve_records.path' was accessed but has no value defined. Try setting the option
@ -110,6 +116,7 @@
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
wget wget
gnome-boxes gnome-boxes
libvirt
]; ];
# Packages that need to be installed with some extra configuration # Packages that need to be installed with some extra configuration

View file

@ -12,7 +12,7 @@
(modulesPath + "/installer/scan/not-detected.nix") (modulesPath + "/installer/scan/not-detected.nix")
]; ];
boot.initrd.availableKernelModules = ["xhci_pci" "ahci" "usb_storage" "usbhid" "sd_mod" "wacom"]; boot.initrd.availableKernelModules = ["xhci_pci" "ahci" "usb_storage" "usbhid" "sd_mod" "wacom" "kvm" "kvm_amd"];
boot.initrd.kernelModules = []; boot.initrd.kernelModules = [];
boot.kernelModules = []; boot.kernelModules = [];
boot.extraModulePackages = []; boot.extraModulePackages = [];