flake: reorganized nixos hosts alphabetically

This commit is contained in:
Aly Raffauf 2024-03-16 20:58:21 -04:00
parent 8774c4ecc3
commit 07c435390d

View file

@ -41,13 +41,12 @@
]; ];
}; };
# T440p with i5-4210M and 16GB RAM. # Home Lab. Ryzen 5 2600 with 16GB RAM, RX 6700.
rustboro = nixpkgs-unstable.lib.nixosSystem { mauville = nixpkgs-unstable.lib.nixosSystem {
system = "x86_64-linux"; system = "x86_64-linux";
modules = [ modules = [
nixos-hardware.nixosModules.lenovo-thinkpad-t440p
home-manager-unstable.nixosModules.home-manager home-manager-unstable.nixosModules.home-manager
./hosts/rustboro ./hosts/mauville
]; ];
}; };
@ -62,12 +61,13 @@
]; ];
}; };
# Ryzen 5 2600 with 16GB RAM, RX 6700. # T440p with i5-4210M and 16GB RAM.
mauville = nixpkgs-unstable.lib.nixosSystem { rustboro = nixpkgs-unstable.lib.nixosSystem {
system = "x86_64-linux"; system = "x86_64-linux";
modules = [ modules = [
nixos-hardware.nixosModules.lenovo-thinkpad-t440p
home-manager-unstable.nixosModules.home-manager home-manager-unstable.nixosModules.home-manager
./hosts/mauville ./hosts/rustboro
]; ];
}; };
}; };