Initial template repo
This commit is contained in:
@@ -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 = {};
|
||||
}
|
||||
Reference in New Issue
Block a user