forked from DGNum/colmena
16 lines
262 B
Nix
16 lines
262 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; };
|
||
|
};
|
||
|
}
|