Added: Podman

This commit is contained in:
2025-03-26 14:54:56 +01:00
parent 5c6dec5e56
commit e93f318c2d
3 changed files with 13 additions and 1 deletions

View File

@@ -1,6 +0,0 @@
{ pkgs, ... }: {
virtualisation.docker = {
enable = true;
};
}

11
home/programs/podman.nix Normal file
View File

@@ -0,0 +1,11 @@
{ pkgs, ... }: {
virtualisation = {
containers.enable = true;
podman = {
enable = true;
dockerCompat = true;
defaultNetwork.settings.dns_enabled = true;
};
};
}