Refactored configuration

This commit is contained in:
2024-06-25 13:11:30 +02:00
parent 3ead6d13d8
commit 726b059e5e
9 changed files with 198 additions and 319 deletions

View File

@@ -0,0 +1,17 @@
{ pkgs, ... }:
{
virtualisation.containers.enable = true;
virtualisation.podman = {
enable = true;
dockerCompat = true;
defaultNetwork.settings.dns_enabled = true;
};
environment.systemPackages = with pkgs; [
dive
podman-tui
podman-compose
];
}