1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-03-18 06:18:14 +00:00
home-manager/tests/modules/services/podman-linux/image.nix

19 lines
425 B
Nix
Raw Normal View History

{
imports = [ ./podman-stubs.nix ];
services.podman = {
enable = true;
images = { "my-img" = { image = "docker.io/alpine:latest"; }; };
};
nmt.script = ''
configPath=home-files/.config/systemd/user
imageFile=$configPath/podman-my-img-image.service
assertFileExists $imageFile
imageFile=$(normalizeStorePaths $imageFile)
assertFileContent $imageFile ${./image-expected.service}
'';
}