nixos-config/config/services/docker.nix

11 lines
203 B
Nix

_: {
virtualisation.docker = {
autoPrune = {
dates = "weekly";
enable = true;
flags = ["--all"];
};
enable = true;
};
users.users.darkkirb.extraGroups = ["docker"];
}