From 40c1c35007a5c0ef867ee95f9708f0dc884ed287 Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Sun, 4 Aug 2024 10:49:21 +0100 Subject: [PATCH] Rename Tone -> Ronin --- flake.nix | 28 +++++++++---------- home/{Tone.nix => Ronin.nix} | 0 system/{Tone.nix => Ronin.nix} | 0 .../{Tone.nix => Ronin.nix} | 0 4 files changed, 14 insertions(+), 14 deletions(-) rename home/{Tone.nix => Ronin.nix} (100%) rename system/{Tone.nix => Ronin.nix} (100%) rename system/hardware-configuration/{Tone.nix => Ronin.nix} (100%) diff --git a/flake.nix b/flake.nix index 649a4d98..e4e3770c 100644 --- a/flake.nix +++ b/flake.nix @@ -183,16 +183,6 @@ modules = defaultModules { inherit system username hostName; }; }; ## Personal - Northstar = - let - system = "x86_64-linux"; - username = "pixelifytica"; - hostName = "Northstar"; - in - nixpkgs.lib.nixosSystem { - specialArgs = defaultSpecialArgs { inherit system; }; - modules = defaultModules { inherit system username hostName; }; - }; Vanguard = let system = "x86_64-linux"; @@ -203,17 +193,17 @@ specialArgs = defaultSpecialArgs { inherit system; }; modules = defaultModules { inherit system username hostName; }; }; - ## Work - Tone = + Northstar = let system = "x86_64-linux"; - username = "elitherl"; - hostName = "Tone"; + username = "pixelifytica"; + hostName = "Northstar"; in nixpkgs.lib.nixosSystem { specialArgs = defaultSpecialArgs { inherit system; }; modules = defaultModules { inherit system username hostName; }; }; + ## Work Scorch = let system = "x86_64-linux"; @@ -224,6 +214,16 @@ specialArgs = defaultSpecialArgs { inherit system; }; modules = defaultModules { inherit system username hostName; }; }; + Ronin = + let + system = "x86_64-linux"; + username = "elitherl"; + hostName = "Ronin"; + in + nixpkgs.lib.nixosSystem { + specialArgs = defaultSpecialArgs { inherit system; }; + modules = defaultModules { inherit system username hostName; }; + }; }; }; } diff --git a/home/Tone.nix b/home/Ronin.nix similarity index 100% rename from home/Tone.nix rename to home/Ronin.nix diff --git a/system/Tone.nix b/system/Ronin.nix similarity index 100% rename from system/Tone.nix rename to system/Ronin.nix diff --git a/system/hardware-configuration/Tone.nix b/system/hardware-configuration/Ronin.nix similarity index 100% rename from system/hardware-configuration/Tone.nix rename to system/hardware-configuration/Ronin.nix