colmena/integration-tests/flakes/flake.nix
Zhaofeng Li ca6ad0de38 integration-tests: Fix flakes test in Nix 2.6
Using a symlink to a Nix store path no longer works.
2022-02-04 20:58:17 -08:00

15 lines
263 B
Nix

{
description = "A simple deployment";
inputs = {
nixpkgs.url = "path:@nixpkgs@";
};
outputs = { self, nixpkgs }: let
pkgs = import nixpkgs {
system = "x86_64-linux";
};
in {
colmena = import ./hive.nix { inherit pkgs; };
};
}