From f89f7145f2ce346d25612b568a937799ea643e02 Mon Sep 17 00:00:00 2001 From: Nydragon Date: Mon, 27 May 2024 22:33:35 +0900 Subject: [PATCH] format: rename xps9510 to marr --- flake.nix | 4 ++-- hosts/{xps9510 => marr}/configuration.nix | 2 +- hosts/{xps9510 => marr}/hardware-configuration.nix | 0 3 files changed, 3 insertions(+), 3 deletions(-) rename hosts/{xps9510 => marr}/configuration.nix (99%) rename hosts/{xps9510 => marr}/hardware-configuration.nix (100%) diff --git a/flake.nix b/flake.nix index cebca5d..10ae0cf 100644 --- a/flake.nix +++ b/flake.nix @@ -26,9 +26,9 @@ in { nixosConfigurations = { - xps9510 = lib.nixosSystem { + marr = lib.nixosSystem { inherit system; - modules = [ ./hosts/xps9510/configuration.nix ]; + modules = [ ./hosts/marr/configuration.nix ]; specialArgs = { inherit inputs diff --git a/hosts/xps9510/configuration.nix b/hosts/marr/configuration.nix similarity index 99% rename from hosts/xps9510/configuration.nix rename to hosts/marr/configuration.nix index 18337a8..e63b646 100644 --- a/hosts/xps9510/configuration.nix +++ b/hosts/marr/configuration.nix @@ -9,7 +9,7 @@ let stateVersion = "23.11"; username = "nico"; - hostname = "xps9510"; + hostname = "marr"; homeDirectory = "/home/${username}"; in { diff --git a/hosts/xps9510/hardware-configuration.nix b/hosts/marr/hardware-configuration.nix similarity index 100% rename from hosts/xps9510/hardware-configuration.nix rename to hosts/marr/hardware-configuration.nix