From 07c435390d8d459749c863f78f20cde9a81bd372 Mon Sep 17 00:00:00 2001 From: Aly Raffauf Date: Sat, 16 Mar 2024 20:58:21 -0400 Subject: [PATCH] flake: reorganized nixos hosts alphabetically --- flake.nix | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/flake.nix b/flake.nix index 7ff04e67..24adb475 100644 --- a/flake.nix +++ b/flake.nix @@ -40,14 +40,13 @@ ./hosts/lavaridge ]; }; - - # T440p with i5-4210M and 16GB RAM. - rustboro = nixpkgs-unstable.lib.nixosSystem { + + # Home Lab. Ryzen 5 2600 with 16GB RAM, RX 6700. + mauville = nixpkgs-unstable.lib.nixosSystem { system = "x86_64-linux"; modules = [ - nixos-hardware.nixosModules.lenovo-thinkpad-t440p home-manager-unstable.nixosModules.home-manager - ./hosts/rustboro + ./hosts/mauville ]; }; @@ -61,13 +60,14 @@ ./hosts/petalburg ]; }; - - # Ryzen 5 2600 with 16GB RAM, RX 6700. - mauville = nixpkgs-unstable.lib.nixosSystem { + + # T440p with i5-4210M and 16GB RAM. + rustboro = nixpkgs-unstable.lib.nixosSystem { system = "x86_64-linux"; modules = [ + nixos-hardware.nixosModules.lenovo-thinkpad-t440p home-manager-unstable.nixosModules.home-manager - ./hosts/mauville + ./hosts/rustboro ]; }; };