feat: add quadlet bridge network

This commit is contained in:
Dmitriy Kholkin 2025-07-08 22:23:36 +03:00
parent f52eaa8eb2
commit 601ddc9795
Signed by: AtaraxiaDev
GPG Key ID: FD266B810DF48DF2
2 changed files with 16 additions and 1 deletions

View File

@ -87,7 +87,6 @@ in
ataraxia.profiles.minimal = mkDefault true;
ataraxia.virtualisation.podman = mkDefault true;
ataraxia.virtualisation.libvirt = mkDefault true;
virtualisation.quadlet.enable = mkDefault true;
boot.supportedFilesystems = [ "nfs" ];

View File

@ -69,6 +69,22 @@ in
};
spiceUSBRedirection.enable = cfg.libvirt;
quadlet = {
enable = true;
autoEscape = true;
autoUpdate.enable = false;
networks = {
br-services.networkConfig = {
driver = "bridge";
ipamDriver = "host-local";
ipv6 = false;
name = "br-services";
podmanArgs = [ "--interface-name=br-services" ];
subnets = [ "10.99.0.0/16" ];
};
};
};
};
environment.systemPackages =