From e0b78f921fb867a35b923cdd1f2399e350660f03 Mon Sep 17 00:00:00 2001 From: Gabe Venberg Date: Wed, 16 Jul 2025 00:00:49 +0200 Subject: [PATCH] renamed rockhole to cumulus. --- flake.nix | 8 ++++---- hosts/{rockhole64 => cumulus}/adguard.nix | 0 hosts/{rockhole64 => cumulus}/default.nix | 2 +- hosts/{rockhole64 => cumulus}/disk-config.nix | 0 hosts/{rockhole64 => cumulus}/hardware-config.nix | 0 hosts/{rockhole64 => cumulus}/nginx.nix | 0 6 files changed, 5 insertions(+), 5 deletions(-) rename hosts/{rockhole64 => cumulus}/adguard.nix (100%) rename hosts/{rockhole64 => cumulus}/default.nix (98%) rename hosts/{rockhole64 => cumulus}/disk-config.nix (100%) rename hosts/{rockhole64 => cumulus}/hardware-config.nix (100%) rename hosts/{rockhole64 => cumulus}/nginx.nix (100%) diff --git a/flake.nix b/flake.nix index bef8156..15dc423 100644 --- a/flake.nix +++ b/flake.nix @@ -93,7 +93,7 @@ # NixOS configuration entrypoint # Available through 'nixos-rebuild --flake .#your-hostname' nixosConfigurations = { - rockhole = import ./hosts/rockhole64 {inherit inputs myLib;}; + cumulus = import ./hosts/cumulus {inherit inputs myLib;}; cirrus = import ./hosts/cirrus {inherit inputs myLib;}; cirrostratus = import ./hosts/cirrostratus {inherit inputs myLib;}; }; @@ -108,9 +108,9 @@ deploy = { nodes = { - rockhole = { - hostname = "rockhole"; - profiles.system.path = deploy-rs.lib.aarch64-linux.activate.nixos self.nixosConfigurations.rockhole; + cumulus = { + hostname = "cumulus"; + profiles.system.path = deploy-rs.lib.aarch64-linux.activate.nixos self.nixosConfigurations.cumulus; remoteBuild = true; }; cirrus = { diff --git a/hosts/rockhole64/adguard.nix b/hosts/cumulus/adguard.nix similarity index 100% rename from hosts/rockhole64/adguard.nix rename to hosts/cumulus/adguard.nix diff --git a/hosts/rockhole64/default.nix b/hosts/cumulus/default.nix similarity index 98% rename from hosts/rockhole64/default.nix rename to hosts/cumulus/default.nix index 266902b..80ae240 100644 --- a/hosts/rockhole64/default.nix +++ b/hosts/cumulus/default.nix @@ -39,7 +39,7 @@ inputs.nixpkgs.lib.nixosSystem { fullName = "Gabe Venberg"; gui.enable = false; }; - networking.hostName = "rockhole"; # Define your hostname. + networking.hostName = "cumulus"; # Define your hostname. networking.hostId = "e0c31928"; networking.useNetworkd = true; systemd.network = { diff --git a/hosts/rockhole64/disk-config.nix b/hosts/cumulus/disk-config.nix similarity index 100% rename from hosts/rockhole64/disk-config.nix rename to hosts/cumulus/disk-config.nix diff --git a/hosts/rockhole64/hardware-config.nix b/hosts/cumulus/hardware-config.nix similarity index 100% rename from hosts/rockhole64/hardware-config.nix rename to hosts/cumulus/hardware-config.nix diff --git a/hosts/rockhole64/nginx.nix b/hosts/cumulus/nginx.nix similarity index 100% rename from hosts/rockhole64/nginx.nix rename to hosts/cumulus/nginx.nix