"Add libvirt and qemu/kvm stuff"

This commit is contained in:
SeanOMik 2022-10-07 21:34:25 -04:00
parent c81d494387
commit f7e0933345
Signed by: SeanOMik
GPG Key ID: 568F326C7EB33ACB
3 changed files with 8 additions and 1 deletions

View File

@ -19,7 +19,7 @@
programs.steam = {
enable = true;
# remotePlay.openFirewall = true;
remotePlay.openFirewall = true;
};
home-manager.users.seanomik = { pkgs, ... }: {
@ -70,6 +70,7 @@
(libsForQt5.callPackage ../../modules/pkgs/jellyfin-media-player.nix { })
jetbrains.idea-community
renderdoc
virt-manager
];
};
}

View File

@ -27,6 +27,8 @@
../modules/desktop/gnome.nix
../modules/desktop_manager/gdm.nix
../modules/virtualisation
# Applications
../modules/cli-tools.nix
../modules/applications

View File

@ -0,0 +1,4 @@
{pkgs, ... }:
{
virtualisation.libvirtd.enable = true;
}