colmena/integration-tests/flakes/flake.nix

16 lines
258 B
Nix
Raw Normal View History

2021-12-05 10:14:12 +01:00
{
description = "A simple deployment";
inputs = {
nixpkgs.url = "@nixpkgs@";
2021-12-05 10:14:12 +01:00
};
outputs = { self, nixpkgs }: let
pkgs = import nixpkgs {
system = "x86_64-linux";
};
in {
colmena = import ./hive.nix { inherit pkgs; };
};
}