From 78948c550b0ff1183b1726356abad1090c551866 Mon Sep 17 00:00:00 2001 From: Raphael Date: Mon, 22 Dec 2025 17:42:58 +0100 Subject: [PATCH] feat(proxmox): removing proxmox - Nixos Natif is better btw --- hosts/proxmox/discord-bots/configuration.nix | 66 -------------------- 1 file changed, 66 deletions(-) delete mode 100644 hosts/proxmox/discord-bots/configuration.nix diff --git a/hosts/proxmox/discord-bots/configuration.nix b/hosts/proxmox/discord-bots/configuration.nix deleted file mode 100644 index 02d1ec6..0000000 --- a/hosts/proxmox/discord-bots/configuration.nix +++ /dev/null @@ -1,66 +0,0 @@ -{ - inputs, - config, - pkgs, - lib, - ... -}: - -{ - imports = [ - ../../global.nix - ./hardware-configuration.nix - ../../../services/discord.nix - ]; - - networking = { - hostName = "pve-discord-bot"; - firewall.enable = false; - networkmanager.enable = true; - wireless.enable = false; - }; - - networking.nameservers = [ - "1.1.1.1" - "1.0.0.1" - "8.8.8.8" - "8.8.4.4" - ]; - - service = { - bot_discord = { - master = true; - bde = false; - tut = false; - marty = false; - ada = false; - music = false; - tempvoc = true; - ticket = true; - }; - }; - - # Bootloader. - boot.loader = { - systemd-boot.enable = false; - grub = { - enable = true; - device = "/dev/sda"; - }; - }; - - services = { - openssh = { - enable = true; - ports = [ 42131 ]; - }; - redis.servers."" = { - enable = true; - }; - postgresql = { - enable = true; - }; - }; - virtualisation.docker.enable = true; - system.stateVersion = "24.05"; -}