from my phone so i cant see the changes lol

This commit is contained in:
2026-08-02 18:41:32 +01:00
parent 702749a275
commit df0e38125e
17 changed files with 1419 additions and 2 deletions

View File

@@ -1,6 +1,23 @@
{self, ...}: {
flake.nixosModules.containers = {config, ...}: let
flake.nixosModules.containers = {
pkgs,
config,
...
}: let
modules = with self.nixosModules; [
containerArrStack
containerBlog
containerCopyparty
containerCryptpad
containerGitea
containerGotify
containerImmich
containerJellyfin
containerMail
containerN8N
containerKomga
containerNginxHomeAssistant
containerSilverbullet
];
in {
imports = modules;
@@ -11,6 +28,13 @@
dockerCompat = true;
};
environment.systemPackages = with pkgs; [
podman-compose
];
hardware.nvidia-container-toolkit = {
enable = true;
};
# Enable container name DNS for all Podman networks.
networking.firewall.interfaces = let
matchAll =