nixos-config/configurations/docker.nix
2020-11-13 22:40:55 +01:00

13 lines
251 B
Nix

{ ... }:
{
chvp.zfs.systemLinks = [
{ path = "/var/lib/docker"; type = "cache"; }
{ path = "/var/lib/docker/volumes"; type = "data"; }
];
virtualisation.docker.enable = true;
users.users.charlotte.extraGroups = [
"docker"
];
}