nix-server/flake.nix

27 lines
548 B
Nix
Raw Normal View History

2024-09-19 12:40:19 +00:00
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.05";
colmena.url = "github:zhaofengli/colmena";
};
outputs =
{ nixpkgs, ... }@inputs:
{
colmena = {
meta = {
nixpkgs = import nixpkgs { system = "x86_64-linux"; };
specialArgs = {
inherit inputs;
};
};
aratta = {
imports = [ ./hosts/aratta ];
deployment = {
targetHost = "49.13.124.155";
targetUser = "root";
};
};
};
};
}