Rename Tone -> Ronin

This commit is contained in:
Evie Litherland-Smith 2024-08-04 10:49:21 +01:00
parent 502e723931
commit 40c1c35007
4 changed files with 14 additions and 14 deletions

View file

@ -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; };
};
};
};
}