Initial commit
This commit is contained in:
commit
6f88b92591
20 changed files with 395 additions and 0 deletions
39
flake.nix
Normal file
39
flake.nix
Normal file
|
@ -0,0 +1,39 @@
|
|||
{
|
||||
inputs = {
|
||||
nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.05";
|
||||
};
|
||||
|
||||
outputs = { nixpkgs, ... }: {
|
||||
colmena = {
|
||||
meta = {
|
||||
nixpkgs = import nixpkgs {
|
||||
system = "x86_64-linux";
|
||||
};
|
||||
};
|
||||
|
||||
nitter = { name, nodes, pkgs, ... }: {
|
||||
deployment = {
|
||||
targetHost = "nixos-nitter.vs.grzb.de";
|
||||
targetUser = "yuri";
|
||||
};
|
||||
imports = [
|
||||
./configuration/common
|
||||
./configuration/proxmox-vm
|
||||
./hosts/nitter
|
||||
];
|
||||
};
|
||||
|
||||
coturn = { name, nodes, pkgs, ... }: {
|
||||
deployment = {
|
||||
targetHost = "nixos-coturn.vs.grzb.de";
|
||||
targetUser = "yuri";
|
||||
};
|
||||
imports = [
|
||||
./configuration/common
|
||||
./configuration/proxmox-vm
|
||||
./hosts/coturn
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue