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,21 +188,17 @@
## Personal ## Personal
Northstar = let Northstar = systemConfig {
hostName = "Northstar"; hostName = "Northstar";
system = "x86_64-linux"; systemModules = [
in ./system/laptop.nix
systemConfig { ./system/hyprland.nix
inherit hostName system; ./system/games.nix
systemModules = [ ];
./system/laptop.nix homeModules = [
./system/hyprland.nix ./home/hyprland/default.nix
./system/games.nix ];
]; };
homeModules = [
./home/hyprland/default.nix
];
};
Vanguard = systemConfig { Vanguard = systemConfig {
hostName = "Vanguard"; hostName = "Vanguard";
@ -218,36 +214,28 @@
## Work ## Work
Ronin = let Ronin = systemConfig {
hostName = "Ronin"; hostName = "Ronin";
user = "elitherl"; user = "elitherl";
system = "x86_64-linux"; systemModules = [
in ./system/laptop.nix
systemConfig { ./system/hyprland.nix
inherit hostName user system; ];
systemModules = [ homeModules = [
./system/laptop.nix ./home/hyprland/default.nix
./system/hyprland.nix ];
]; };
homeModules = [
./home/hyprland/default.nix
];
};
Scorch = let Scorch = systemConfig {
hostName = "Scorch"; hostName = "Scorch";
user = "elitherl"; user = "elitherl";
system = "x86_64-linux"; systemModules = [
in ./system/hyprland.nix
systemConfig { ];
inherit hostName user system; homeModules = [
systemModules = [ ./home/hyprland/default.nix
./system/hyprland.nix ];
]; };
homeModules = [
./home/hyprland/default.nix
];
};
}; };
}; };
} }