diff --git a/hosts/gabbielaptop/configuration.nix b/hosts/gabbielaptop/configuration.nix index d953055..b41ff19 100644 --- a/hosts/gabbielaptop/configuration.nix +++ b/hosts/gabbielaptop/configuration.nix @@ -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, pkgs, @@ -166,6 +163,9 @@ # Enable flatpak for nix-flatpak used in home-manager 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 hardware.keyboard.qmk.enable = true; diff --git a/modules/packages.nix b/modules/packages.nix index a3e234a..bd3882c 100644 --- a/modules/packages.nix +++ b/modules/packages.nix @@ -40,5 +40,6 @@ libreoffice nixfmt-rfc-style nixd + qemu ]; }