Arion: Add volman

This commit is contained in:
GHOSCHT 2024-03-07 16:46:49 +01:00
parent fd4e1ce93d
commit f807e11b6c
Signed by: ghoscht
GPG key ID: 2C2C1C62A5388E82
2 changed files with 22 additions and 0 deletions

View file

@ -0,0 +1,16 @@
{pkgs, ...}: {
project.name = "volman";
docker-compose.volumes = {};
services = {
volman.service = {
image = "ubuntu";
container_name = "volman";
useHostStore = true;
command = "sleep infinity";
volumes = [
];
};
};
}

View file

@ -0,0 +1,6 @@
# Instead of pinning Nixpkgs, we can opt to use the one in NIX_PATH
import <nixpkgs> {
# We specify the architecture explicitly. Use a Linux remote builder when
# calling arion from other platforms.
system = "x86_64-linux";
}