enable qemu virtualization

This commit is contained in:
Gabriella Bere 2025-05-26 19:10:01 +01:00
parent 75bf694865
commit ec9a626426
2 changed files with 4 additions and 3 deletions

View file

@ -1,6 +1,3 @@
# Edit this configuration file to define what should be installed on
# your system. Help is available in the configuration.nix(5) man page
# and in the NixOS manual (accessible by running nixos-help).
{ {
lib, lib,
pkgs, pkgs,
@ -166,6 +163,9 @@
# Enable flatpak for nix-flatpak used in home-manager # Enable flatpak for nix-flatpak used in home-manager
services.flatpak.enable = true; services.flatpak.enable = true;
# Required for QEMU
systemd.tmpfiles.rules = [ "L+ /var/lib/qemu/firmware - - - - ${pkgs.qemu}/share/qemu/firmware" ];
# Enable qmk for managing framework laptop keyboards # Enable qmk for managing framework laptop keyboards
hardware.keyboard.qmk.enable = true; hardware.keyboard.qmk.enable = true;

View file

@ -40,5 +40,6 @@
libreoffice libreoffice
nixfmt-rfc-style nixfmt-rfc-style
nixd nixd
qemu
]; ];
} }