core01/public-cof: flush changes, router02 → router01

This commit is contained in:
Raito Bezarius 2022-01-24 22:04:43 +01:00
parent 2c321dd0aa
commit 067ab1d7cc
5 changed files with 27 additions and 25 deletions

View file

@ -79,7 +79,7 @@ dualstack // {
internal.subdomains = { internal.subdomains = {
# Routers # Routers
router01.A = [ "10.1.1.1" ]; router01.A = [ "10.1.1.1" ];
router02.A = [ "10.1.1.2" ]; router02.A = [ "10.1.1.1" ];
# Hypervisors # Hypervisors
pve01 = { pve01 = {

View file

@ -8,7 +8,7 @@ in
configuration = { configuration = {
protocolUseSSL = true; protocolUseSSL = true;
# scp =; # TODO # scp =; # TODO
domain = "//docs.beta.rz.ens.wtf"; domain = "docs.beta.rz.ens.wtf";
host = "localhost"; host = "localhost";
port = port; port = port;
db = { db = {

View file

@ -11,9 +11,11 @@
prefixLength = 64; prefixLength = 64;
}]; }];
}; };
interfaces.ens19 = {
useDHCP = true;
};
firewall.allowedTCPPorts = [ 22 ]; firewall.allowedTCPPorts = [ 22 ];
firewall.allowedUDPPorts = [ 22 ];
firewall.enable = true; firewall.enable = true;
}; };
} }

View file

@ -14,7 +14,7 @@
"klubrz-nur": { "klubrz-nur": {
"branch": "main", "branch": "main",
"repo": "https://git.rz.ens.wtf/Klub-RZ/nur", "repo": "https://git.rz.ens.wtf/Klub-RZ/nur",
"rev": "901e08a94819f07499ec6cfbea1e24808e19e4b6", "rev": "98911e21fd58f00440dc8a5bd6568f2a349338bd",
"type": "git" "type": "git"
}, },
"niv": { "niv": {

View file

@ -1,8 +1,8 @@
{ lib, pkgs, ... }: { lib, pkgs, ... }:
let let
nivSources = import ./nix/sources.nix; nivSources = import ./nix/sources.nix;
#rz-src = nivSources.klubrz-nur; rz-src = nivSources.klubrz-nur;
#rz-no-pkgs = (import nivSources.klubrz-nur {}); rz-no-pkgs = (import nivSources.klubrz-nur {});
in in
{ {
nixpkgs.config.packageOverrides = { nixpkgs.config.packageOverrides = {
@ -11,7 +11,7 @@ in
imports = [ imports = [
"${nivSources.agenix}/modules/age.nix" "${nivSources.agenix}/modules/age.nix"
]; #++ lib.attrValues rz-no-pkgs.modules; ] ++ lib.attrValues rz-no-pkgs.modules;
nixpkgs.overlays = []; nixpkgs.overlays = [];
} }