feat: add quadlet bridge network
This commit is contained in:
parent
f52eaa8eb2
commit
601ddc9795
@ -87,7 +87,6 @@ in
|
|||||||
ataraxia.profiles.minimal = mkDefault true;
|
ataraxia.profiles.minimal = mkDefault true;
|
||||||
ataraxia.virtualisation.podman = mkDefault true;
|
ataraxia.virtualisation.podman = mkDefault true;
|
||||||
ataraxia.virtualisation.libvirt = mkDefault true;
|
ataraxia.virtualisation.libvirt = mkDefault true;
|
||||||
virtualisation.quadlet.enable = mkDefault true;
|
|
||||||
|
|
||||||
boot.supportedFilesystems = [ "nfs" ];
|
boot.supportedFilesystems = [ "nfs" ];
|
||||||
|
|
||||||
|
@ -69,6 +69,22 @@ in
|
|||||||
};
|
};
|
||||||
|
|
||||||
spiceUSBRedirection.enable = cfg.libvirt;
|
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 =
|
environment.systemPackages =
|
||||||
|
Loading…
x
Reference in New Issue
Block a user