bagel-infra/flake.nix
2024-06-23 06:41:53 +02:00

22 lines
446 B
Nix

{
description = "Bagel cooking infrastructure";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
colmena.url = "github:zhaofengli/colmena";
colmena.inputs.nixpkgs.follows = "nixpkgs";
};
outputs = { nixpkgs, ... } @ inputs: {
colmena = {
meta.nixpkgs = import nixpkgs {
system = "x86_64-linux";
};
bagel-box = {
imports = [ ./hosts/bagel-box ];
};
};
};
}