feat: Add 'docker' to user.extraGroups

In systems/x86_64-linux/x1/default.nix, 'docker' has been added to user.extraGroups. This allows the current user to manage Docker without needing root access.
This commit is contained in:
Harald Hoyer 2024-04-11 10:50:52 +02:00
parent c0991dbdd1
commit 86e5539c2f

View file

@ -11,6 +11,7 @@ with lib.metacfg;
nix.enable = true; nix.enable = true;
podman.enable = true; podman.enable = true;
secureboot.enable = true; secureboot.enable = true;
user.extraGroups = [ "docker" ];
}; };
virtualisation = { virtualisation = {