summaryrefslogtreecommitdiff
path: root/modules/virt.nix
diff options
context:
space:
mode:
authorJakub Stachurski <j.stachurski@student.utwente.nl>2025-10-11 21:02:35 +0200
committerJakub Stachurski <j.stachurski@student.utwente.nl>2025-10-11 21:23:05 +0200
commiteeb53599fb7f7a6ae9543f37538d6eef69b5d81c (patch)
tree9794865aeb3664d85e9f2c0691140eb920f9f558 /modules/virt.nix
parent38231218792e8cb112c229fc6b55cdcb5caae95c (diff)
Bunch of updates:
- Fixed not having virt-manager - Added Steam - Removed old ssd mounts on apocalypse - Fixed syncthing service - Probably some spotify stuff
Diffstat (limited to 'modules/virt.nix')
-rw-r--r--modules/virt.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/virt.nix b/modules/virt.nix
index 416f1c4..feb27c7 100644
--- a/modules/virt.nix
+++ b/modules/virt.nix
@@ -13,7 +13,9 @@ in
environment.systemPackages = with pkgs; [
qemu
];
+ programs.virt-manager.enable = true;
virtualisation = {
+ spiceUSBRedirection.enable = true;
docker.enable = true;
libvirtd = {
enable = true;
@@ -28,7 +30,6 @@ in
})
(lib.mkIf cfg.guest {
- virtualisation.spiceUSBRedirection.enable = true;
services.spice-vdagentd.enable = true;
})
]);