1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-02 07:01:03 +01:00

podman: use dependency quadlets directly in build for generator

This commit is contained in:
Nicholas Hassan 2025-02-12 22:10:25 +10:30 committed by Austin Horstman
parent eb5d59dac9
commit 4108ec3aa8
4 changed files with 80 additions and 64 deletions

View file

@ -17,9 +17,9 @@
};
containers = {
"my-container" = {
image = "my-img";
network = [ "my-net" "externalnet" ];
volumes = [ "my-vol:/data" ];
image = "my-img.image";
network = [ "my-net.network" "externalnet" ];
volumes = [ "my-vol.volume:/data" ];
};
"my-container-bld" = { image = "my-bld"; };
};