flake reorg

This commit is contained in:
Robin Appelman 2024-01-14 18:45:16 +01:00
commit a603ec8cfa
9 changed files with 666 additions and 451 deletions

12
docker.nix Normal file
View file

@ -0,0 +1,12 @@
{
dockerTools,
demostf-backup,
}:
dockerTools.buildImage {
name = "demostf/backup";
tag = "latest";
copyToRoot = [demostf-backup];
config = {
Cmd = ["${demostf-backup}/bin/demostf-backup"];
};
}