2021-12-05 10:14:12 +01:00
|
|
|
{
|
|
|
|
description = "A simple deployment";
|
|
|
|
|
|
|
|
inputs = {
|
2022-02-05 05:58:17 +01:00
|
|
|
nixpkgs.url = "path:@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; };
|
|
|
|
};
|
|
|
|
}
|