nixos-config/configurations/docker.nix
Charlotte Van Petegem cfb48de40c Reorganize for zfs
2020-05-23 09:59:32 +02:00

13 lines
253 B
Nix

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