Slightly cleanup flake system config definition

This commit is contained in:
Evie Litherland-Smith 2024-03-08 08:01:13 +00:00
parent a954a119e8
commit 07cce0e8a8

View file

@ -188,12 +188,8 @@
## Personal ## Personal
Northstar = let Northstar = systemConfig {
hostName = "Northstar"; hostName = "Northstar";
system = "x86_64-linux";
in
systemConfig {
inherit hostName system;
systemModules = [ systemModules = [
./system/laptop.nix ./system/laptop.nix
./system/hyprland.nix ./system/hyprland.nix
@ -218,13 +214,9 @@
## Work ## Work
Ronin = let Ronin = systemConfig {
hostName = "Ronin"; hostName = "Ronin";
user = "elitherl"; user = "elitherl";
system = "x86_64-linux";
in
systemConfig {
inherit hostName user system;
systemModules = [ systemModules = [
./system/laptop.nix ./system/laptop.nix
./system/hyprland.nix ./system/hyprland.nix
@ -234,13 +226,9 @@
]; ];
}; };
Scorch = let Scorch = systemConfig {
hostName = "Scorch"; hostName = "Scorch";
user = "elitherl"; user = "elitherl";
system = "x86_64-linux";
in
systemConfig {
inherit hostName user system;
systemModules = [ systemModules = [
./system/hyprland.nix ./system/hyprland.nix
]; ];