nixos-config/config/services/docker.nix

12 lines
203 B
Nix
Raw Normal View History

2022-06-26 08:16:16 +01:00
_: {
2022-06-23 09:08:58 +01:00
virtualisation.docker = {
autoPrune = {
dates = "weekly";
enable = true;
flags = ["--all"];
};
enable = true;
};
2022-07-26 10:39:51 +01:00
users.users.darkkirb.extraGroups = ["docker"];
2022-06-23 09:08:58 +01:00
}