add docker

This commit is contained in:
TheWanderingCrow 2024-12-25 15:58:55 -05:00
parent 036d521527
commit 49428031be

View file

@ -0,0 +1,13 @@
{
config,
lib,
...
}: {
virtualisation.docker = lib.mkIf config.software.docker.enable {
enable = true;
rootless = {
enable = true;
setSocketVariable = true;
};
};
}