add specialisation for podman and docker

This commit is contained in:
TheWanderingCrow 2025-08-28 10:09:29 -04:00
parent 96b1969a19
commit dd619edd86
2 changed files with 27 additions and 1 deletions

View file

@ -0,0 +1,8 @@
{pkgs, ...}: {
virtualisation.docker = {
enable = true;
extraPackages = [
pkgs.docker-compose
];
};
}