1
0
Fork 0
vcp-bula-nixfiles/flake.nix

25 lines
604 B
Nix
Raw Normal View History

2022-07-07 11:15:52 +02:00
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
};
outputs = { nixpkgs, ... }: {
colmena = {
meta = {
nixpkgs = import nixpkgs {
system = "x86_64-linux";
};
};
pre-router = { config, pkgs, ... }:{
imports = [./hosts/pre-router/configuration.nix];
deployment.targetHost = "lightbuffet.entr0py.cloud";
deployment.keys = {
};
};
};
};
}