From 9eb0949e6054679249a5a7ed92235611994e6a64 Mon Sep 17 00:00:00 2001 From: Nettika Date: Wed, 8 Oct 2025 17:18:09 -0700 Subject: [PATCH] Remove apogee host --- hosts/apogee/default.nix | 7 ------ hosts/apogee/gandicloud.nix | 46 ------------------------------------- 2 files changed, 53 deletions(-) delete mode 100644 hosts/apogee/default.nix delete mode 100644 hosts/apogee/gandicloud.nix diff --git a/hosts/apogee/default.nix b/hosts/apogee/default.nix deleted file mode 100644 index f74e348..0000000 --- a/hosts/apogee/default.nix +++ /dev/null @@ -1,7 +0,0 @@ -{ ... }: { - imports = [ ./gandicloud.nix ]; - - networking.hostName = "apogee"; - - promptSymbol = "🔭"; -} diff --git a/hosts/apogee/gandicloud.nix b/hosts/apogee/gandicloud.nix deleted file mode 100644 index 8df6e08..0000000 --- a/hosts/apogee/gandicloud.nix +++ /dev/null @@ -1,46 +0,0 @@ -# This is the configuration required to run NixOS on GandiCloud. -{ lib, modulesPath, ... }: { - imports = [ (modulesPath + "/virtualisation/openstack-config.nix") ]; - config = { - boot.initrd.kernelModules = [ - "xen-blkfront" - "xen-tpmfront" - "xen-kbdfront" - "xen-fbfront" - "xen-netfront" - "xen-pcifront" - "xen-scsifront" - ]; - - # Show debug kernel message on boot then reduce loglevel once booted - boot.consoleLogLevel = 7; - boot.kernel.sysctl."kernel.printk" = "4 4 1 7"; - - # For "openstack console log show" - boot.kernelParams = [ "console=ttyS0" ]; - systemd.services."serial-getty@ttyS0" = { - enable = true; - wantedBy = [ "multi-user.target" ]; - serviceConfig.Restart = "always"; - }; - - # The device exposed by Xen - boot.loader.grub.device = lib.mkForce "/dev/xvda"; - - # This is to get a prompt via the "openstack console url show" command - systemd.services."getty@tty1" = { - enable = lib.mkForce true; - wantedBy = [ "multi-user.target" ]; - serviceConfig.Restart = "always"; - }; - - # This is required to get an IPv6 address on our infrastructure - networking.tempAddresses = "disabled"; - - nix.extraOptions = '' - experimental-features = nix-command flakes - ''; - - system.stateVersion = "24.11"; - }; -}