remove dead machines

This commit is contained in:
41666 2024-03-25 23:44:08 -04:00
parent 1cfd600738
commit 8016e3eeaa
8 changed files with 0 additions and 99 deletions

View file

@ -30,7 +30,6 @@
# still possible to use this option, but it's recommended to use it in conjunction
# with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`.
networking.useDHCP = lib.mkDefault true;
# networking.dhcpcd.IPv6rs = true;
# networking.interfaces.enp5s0.useDHCP = lib.mkDefault true;
# networking.interfaces.enp6s0.useDHCP = lib.mkDefault true;
# networking.interfaces.enp7s0.useDHCP = lib.mkDefault true;

View file

@ -1 +0,0 @@
192.168.1.114

View file

@ -1,25 +0,0 @@
{ ... }: {
imports = [
../../templates/proxmox-lxc.nix
../../server.nix
../../features/dns-cache.nix
];
networking.hostName = "happystaticbuzz";
system.stateVersion = "24.05";
nixpkgs.hostPlatform = "x86_64-linux";
networking.firewall.allowedTCPPorts = [ 8080 ];
services.gotosocial = {
enable = true;
settings = {
application-name = "happy static buzzing";
bind-address = "0.0.0.0";
host = "happ.ystatic.buzz";
account-registration-open = false;
trusted-proxies = [ "100.0.0.0/8" ];
log-level = "trace";
};
};
}

View file

@ -1 +0,0 @@
192.168.1.188

View file

@ -1,24 +0,0 @@
{ ... }: {
imports = [
../../templates/proxmox-lxc.nix
../../server.nix
../../features/dns-cache.nix
];
networking.hostName = "keysmash";
system.stateVersion = "24.05";
nixpkgs.hostPlatform = "x86_64-linux";
networking.firewall.allowedTCPPorts = [ 8080 ];
services.gotosocial = {
enable = true;
settings = {
application-name = "keysmash";
bind-address = "0.0.0.0";
host = "keysmash.xn--q9jyb4c";
account-registration-open = false;
trusted-proxies = [ "100.0.0.0/8" ];
};
};
}

View file

@ -1,17 +0,0 @@
{ ... }: {
imports = [
../../templates/proxmox-lxc.nix
../../server.nix
../../features/dns-cache.nix
../../features/nginx.nix
];
networking.hostName = "lab-alpha";
system.stateVersion = "24.05";
nixpkgs.hostPlatform = "x86_64-linux";
services.mastodon = {
enable = true;
configureNginx = true;
};
}

View file

@ -1 +0,0 @@
mango.hoki-porgy.ts.net

View file

@ -1,29 +0,0 @@
{ inputs, pkgs, config, ... }: {
imports = [
../../templates/proxmox-lxc.nix
../../server.nix
../../features/dns-cache.nix
];
networking.hostName = "mango";
system.stateVersion = "24.05";
nixpkgs.hostPlatform = "x86_64-linux";
networking.firewall.allowedTCPPorts = [ config.services.matrix-conduit.settings.global.port ];
networking.firewall.allowedUDPPorts = [ config.services.matrix-conduit.settings.global.port ];
services.matrix-conduit = {
enable = true;
package = inputs.conduit.packages.${pkgs.system}.default;
settings.global = {
server_name = "sapphic.engineer";
port = 6167;
address = "::";
allow_registration = false;
allow_federation = true;
allow_check_for_updates = true;
};
};
#
}