added podman module

This commit is contained in:
2026-03-28 21:56:36 +00:00
parent d2f3e70c38
commit f9a39d3f7d
2 changed files with 22 additions and 0 deletions
View File
+22
View File
@@ -0,0 +1,22 @@
{ den, modules, ... }:
{
modules.podman = {
nixos =
{ ... }:
{
virtualisation = {
containers.enable = true;
podman = {
enable = true;
dockerCompat = true;
defaultNetwork.settings = {
dns_enabled = true;
};
};
};
users.users."doloro" = {
extraGroups = [ "podman" ];
};
};
};
}