nixos/flake.nix

116 lines
2.3 KiB
Nix
Raw Normal View History

2023-01-12 21:10:17 +00:00
{
description = "Deployment for skynet";
inputs = {
# gonna start off with a fairly modern base
2023-01-12 21:35:12 +00:00
nixpkgs.url = "nixpkgs/nixos-22.11";
2023-01-12 21:10:17 +00:00
# utility stuff
flake-utils.url = "github:numtide/flake-utils";
agenix.url = "github:ryantm/agenix";
2023-01-18 20:41:10 +00:00
# this is the last stable hash that works for 22.11
arion.url = "github:hercules-ci/arion/d1cc2b2a7dd0928ebd94a3f18336b5515e95c60c";
2023-01-12 21:10:17 +00:00
};
2023-01-18 20:41:10 +00:00
outputs = { self, nixpkgs, agenix, arion, ... }: {
2023-01-15 17:45:21 +00:00
# https://github.com/zhaofengli/colmena
colmena = {
meta = {
nixpkgs = import nixpkgs {
system = "x86_64-linux";
2023-01-15 22:20:55 +00:00
overlays = [];
2023-01-15 17:45:21 +00:00
};
};
2023-01-15 17:45:21 +00:00
# installed for each machine
2023-01-15 22:20:55 +00:00
defaults = {
imports = [
./machines/_base.nix
# for the secrets
agenix.nixosModule
];
};
2023-01-13 00:33:28 +00:00
2023-01-17 21:11:13 +00:00
/* TODO:
vm host
jarvis.skynet.ie
193.1.99.73
2023-01-17 21:53:39 +00:00
172.20.20.2
2023-01-17 21:11:13 +00:00
ports
22, 80
none
DNS
2023-01-17 21:53:39 +00:00
vendetta.skynet.ie
2023-01-17 21:11:13 +00:00
ns1.skynet.ie
193.1.99.120
2023-01-17 21:53:39 +00:00
172.20.20.3
2023-01-17 21:11:13 +00:00
Ports
22, 53 (UDP)
53 (UDP)
vigil.skynet.ie
ns2.skynet.ie
193.1.99.121
172.20.20.4
Ports
22, 53 (UDP)
53 (UDP)
2023-01-17 21:11:13 +00:00
Wireguard
ash.skynet.ie Ash is a robot spy from Alien https://en.wikipedia.org/wiki/Ash_(Alien) we need someone to get us into teh network
193.1.99.75
172.20.205.5
2023-01-17 21:11:13 +00:00
Ports
22, 51820 (UDP)
51820 (UDP)
Icecase
stream.skynet.ie
193.1.99.111
172.20.20.6
2023-01-17 21:11:13 +00:00
Ports
22, 80, 443, 8000
80, 443, 8000
Minecraft
minecraft.games.skynet.ie
193.1.99.112
172.20.20.7
2023-01-17 21:11:13 +00:00
Ports
22, 80, 443, 25564, 25565, 25575
80, 443, 25564, 25565, 25575
*/
2023-01-18 02:06:08 +00:00
# firewall machiene
agentjones = import ./machines/agentjones.nix;
# ns1
vendetta = import ./machines/vendetta.nix;
2023-01-15 15:10:40 +00:00
# ns1
vigil = import ./machines/vigil.nix;
# wireguard
ash = import ./machines/ash.nix;
# icecast - ULFM
galatea = import ./machines/galatea.nix;
2023-01-18 20:41:10 +00:00
# Game host
optimus = {
imports = [
./machines/optimus.nix
# for the docker
arion.nixosModules.arion
];
};
2023-01-15 17:45:21 +00:00
};
2023-01-12 21:10:17 +00:00
};
}