From 8f07bcd56272ae3291fd0dc197e2c93296a196a0 Mon Sep 17 00:00:00 2001 From: SindreKjelsrud Date: Sat, 4 Oct 2025 19:43:00 +0200 Subject: [PATCH] refactor: Rename egghead to skypiea Forgot the actual name for my gamingpc was skypiea lol Signed-off-by: SindreKjelsrud --- flake.nix | 4 ++-- hosts/{egghead => skypiea}/configuration.nix | 2 +- hosts/{egghead => skypiea}/hardware-configuration.nix | 0 hosts/{egghead => skypiea}/home.nix | 0 4 files changed, 3 insertions(+), 3 deletions(-) rename hosts/{egghead => skypiea}/configuration.nix (98%) rename hosts/{egghead => skypiea}/hardware-configuration.nix (100%) rename hosts/{egghead => skypiea}/home.nix (100%) diff --git a/flake.nix b/flake.nix index f4c961f..0f5a46b 100644 --- a/flake.nix +++ b/flake.nix @@ -26,10 +26,10 @@ inputs.home-manager.nixosModules.default ]; }; - egghead = nixpkgs.lib.nixosSystem { + skypiea = nixpkgs.lib.nixosSystem { specialArgs = {inherit inputs;}; modules = [ - ./hosts/egghead/configuration.nix + ./hosts/skypiea/configuration.nix inputs.home-manager.nixosModules.default ]; }; diff --git a/hosts/egghead/configuration.nix b/hosts/skypiea/configuration.nix similarity index 98% rename from hosts/egghead/configuration.nix rename to hosts/skypiea/configuration.nix index 23d973c..8146f8b 100644 --- a/hosts/egghead/configuration.nix +++ b/hosts/skypiea/configuration.nix @@ -16,7 +16,7 @@ boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; - networking.hostName = "egghead"; # Define your hostname. + networking.hostName = "skypiea"; # Define your hostname. # networking.wireless.enable = true; # Enables wireless support via wpa_supplicant. # Configure network proxy if necessary diff --git a/hosts/egghead/hardware-configuration.nix b/hosts/skypiea/hardware-configuration.nix similarity index 100% rename from hosts/egghead/hardware-configuration.nix rename to hosts/skypiea/hardware-configuration.nix diff --git a/hosts/egghead/home.nix b/hosts/skypiea/home.nix similarity index 100% rename from hosts/egghead/home.nix rename to hosts/skypiea/home.nix