added qemu

This commit is contained in:
Harry 2025-01-24 21:31:05 +01:00
parent 7e62493d21
commit 1de2a5aa0a
2 changed files with 8 additions and 0 deletions

View file

@ -2,6 +2,7 @@
{
imports = [
./wine.nix
./qemu.nix
./neovim.nix
./flatpak.nix
./discord.nix

View file

@ -0,0 +1,7 @@
{pkgs, config, ...}: {
environment.systemPackages = with pkgs; [
quickemu
qemu
];
}