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:
parent
1afee15561
commit
66022d19c2
1 changed files with 5 additions and 2 deletions
|
|
@ -30,7 +30,10 @@
|
|||
nix.enable = true;
|
||||
podman.enable = true;
|
||||
secureboot.enable = true;
|
||||
user.extraGroups = [ "docker" ];
|
||||
user.extraGroups = [
|
||||
"docker"
|
||||
"libvirtd"
|
||||
];
|
||||
tools = {
|
||||
direnv.enable = true;
|
||||
};
|
||||
|
|
@ -38,7 +41,7 @@
|
|||
|
||||
virtualisation = {
|
||||
docker.enable = false;
|
||||
libvirtd.enable = false;
|
||||
libvirtd.enable = true;
|
||||
podman.dockerCompat = true;
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue