chore(nix): enable libvirtd and update user groups

- Enabled `libvirtd` in virtualization settings to allow libvirt usage.
- Added `libvirtd` to `user.extraGroups` for better permissions and management.
This commit is contained in:
Harald Hoyer 2025-11-27 10:37:46 +01:00
parent 1afee15561
commit 66022d19c2

View file

@ -30,7 +30,10 @@
nix.enable = true; nix.enable = true;
podman.enable = true; podman.enable = true;
secureboot.enable = true; secureboot.enable = true;
user.extraGroups = [ "docker" ]; user.extraGroups = [
"docker"
"libvirtd"
];
tools = { tools = {
direnv.enable = true; direnv.enable = true;
}; };
@ -38,7 +41,7 @@
virtualisation = { virtualisation = {
docker.enable = false; docker.enable = false;
libvirtd.enable = false; libvirtd.enable = true;
podman.dockerCompat = true; podman.dockerCompat = true;
}; };