Initial template repo

This commit is contained in:
2026-06-16 20:55:00 +02:00
commit 65a547ad1a
39 changed files with 3628 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
{ pkgs, ... }:
{
# Podman für Container
virtualisation.podman = {
enable = true;
dockerCompat = true; # docker CLI compatibility
defaultNetwork.settings.dns_enabled = true;
};
# Distrobox für einfache Linux-Container
environment.systemPackages = with pkgs; [
distrobox
podman-compose
distroshelf
];
# Benutzergruppe für Podman
users.groups.podman = {};
}