setup basic virtualisation

This commit is contained in:
Markus Heurung 2024-05-17 16:38:19 +02:00
parent 21f2ba134a
commit c57a4c4b7c

View file

@ -78,7 +78,7 @@
isNormalUser = true; isNormalUser = true;
name = "muhh"; name = "muhh";
description = "Markus Heurung"; description = "Markus Heurung";
extraGroups = [ "input" "networkmanager" "video" "wheel" ]; extraGroups = [ "libvirtd" "qemu-libvirtd" "audio" "input" "networkmanager" "video" "wheel" ];
shell = pkgs.fish; shell = pkgs.fish;
linger = true; linger = true;
}; };
@ -114,9 +114,14 @@
light.enable = true; light.enable = true;
sway.enable = true; sway.enable = true;
}; };
virtualisation.podman = { virtualisation = {
enable = true; libvirtd = {
dockerCompat = true; enable = true;
};
podman = {
enable = true;
dockerCompat = true;
};
}; };
xdg.portal.wlr.enable = true; xdg.portal.wlr.enable = true;