aboutsummaryrefslogtreecommitdiff
path: root/example/example.hcl
diff options
context:
space:
mode:
Diffstat (limited to 'example/example.hcl')
-rw-r--r--example/example.hcl24
1 files changed, 0 insertions, 24 deletions
diff --git a/example/example.hcl b/example/example.hcl
deleted file mode 100644
index dee0e0e..0000000
--- a/example/example.hcl
+++ /dev/null
@@ -1,24 +0,0 @@
-job "example" {
- datacenters = ["dc1"]
- type = "batch"
-
- group "example" {
- task "test-nix-hello" {
- driver = "nix2"
-
- config {
- command = "sh"
- args = [
- "-c",
- "pwd; ls -l *; mount; hello"
- ]
- packages = [
- "github:NixOS/nixpkgs#coreutils",
- "github:NixOS/nixpkgs#bash",
- "github:NixOS/nixpkgs#hello"
- ]
- }
- user = "lx"
- }
- }
-}