13 lines
253 B
Nix
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"
|
|
];
|
|
|
|
}
|