update syncthing id

This commit is contained in:
Kopatz
2024-06-24 10:01:15 +02:00
parent ec28c29b9f
commit 3d7b43c583
8 changed files with 76 additions and 20 deletions

9
pkgs/test-docker.nix Normal file
View File

@@ -0,0 +1,9 @@
{ dockerTools, hello }:
dockerTools.buildLayeredImage {
name = "hello";
tag = "latest";
contents = [ hello ];
config.Cmd = [ "/bin/hello" ];
}