mirror of
https://github.com/Cian-H/My_NixOS_Config.git
synced 2025-12-22 15:01:57 +00:00
31 lines
527 B
Nix
31 lines
527 B
Nix
{
|
|
inputs,
|
|
outputs,
|
|
lib,
|
|
config,
|
|
pkgs,
|
|
unstablePkgs,
|
|
...
|
|
}: {
|
|
services.podman = {
|
|
enable = true;
|
|
enableTypeChecks = true;
|
|
autoUpdate.enable = true;
|
|
# A network for exposing endpoints to the reverse proxy
|
|
networks = {
|
|
proxy-net = {
|
|
subnet = "192.168.12.0/24";
|
|
};
|
|
};
|
|
};
|
|
|
|
imports = [
|
|
./containers/media.nix
|
|
./containers/monitoring.nix
|
|
./containers/caddy.nix
|
|
./containers/work_tools.nix
|
|
./containers/nextcloud.nix
|
|
./containers/gitea.nix
|
|
];
|
|
}
|