diff --git a/nixos/hosts/aerial/hardware-configuration.nix b/nixos/hosts/aerial/hardware-configuration.nix index 68849c8..b514bd6 100644 --- a/nixos/hosts/aerial/hardware-configuration.nix +++ b/nixos/hosts/aerial/hardware-configuration.nix @@ -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..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; diff --git a/nixos/hosts/happystaticbuzz/.target b/nixos/hosts/happystaticbuzz/.target deleted file mode 100644 index 1a04027..0000000 --- a/nixos/hosts/happystaticbuzz/.target +++ /dev/null @@ -1 +0,0 @@ -192.168.1.114 diff --git a/nixos/hosts/happystaticbuzz/default.nix b/nixos/hosts/happystaticbuzz/default.nix deleted file mode 100644 index 50f3bbf..0000000 --- a/nixos/hosts/happystaticbuzz/default.nix +++ /dev/null @@ -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"; - }; - }; -} diff --git a/nixos/hosts/keysmash/.target b/nixos/hosts/keysmash/.target deleted file mode 100644 index 482e29f..0000000 --- a/nixos/hosts/keysmash/.target +++ /dev/null @@ -1 +0,0 @@ -192.168.1.188 diff --git a/nixos/hosts/keysmash/default.nix b/nixos/hosts/keysmash/default.nix deleted file mode 100644 index c6a6486..0000000 --- a/nixos/hosts/keysmash/default.nix +++ /dev/null @@ -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" ]; - }; - }; -} diff --git a/nixos/hosts/lab-alpha/default.nix b/nixos/hosts/lab-alpha/default.nix deleted file mode 100644 index 7fc1289..0000000 --- a/nixos/hosts/lab-alpha/default.nix +++ /dev/null @@ -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; - }; -} diff --git a/nixos/hosts/mango/.target b/nixos/hosts/mango/.target deleted file mode 100644 index b224b09..0000000 --- a/nixos/hosts/mango/.target +++ /dev/null @@ -1 +0,0 @@ -mango.hoki-porgy.ts.net diff --git a/nixos/hosts/mango/default.nix b/nixos/hosts/mango/default.nix deleted file mode 100644 index 359e462..0000000 --- a/nixos/hosts/mango/default.nix +++ /dev/null @@ -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; - }; - }; - - # -}