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
Northstar = let
Northstar = systemConfig {
hostName = "Northstar";
system = "x86_64-linux";
in
systemConfig {
inherit hostName system;
systemModules = [
./system/laptop.nix
./system/hyprland.nix
@ -218,13 +214,9 @@
## Work
Ronin = let
Ronin = systemConfig {
hostName = "Ronin";
user = "elitherl";
system = "x86_64-linux";
in
systemConfig {
inherit hostName user system;
systemModules = [
./system/laptop.nix
./system/hyprland.nix
@ -234,13 +226,9 @@
];
};
Scorch = let
Scorch = systemConfig {
hostName = "Scorch";
user = "elitherl";
system = "x86_64-linux";
in
systemConfig {
inherit hostName user system;
systemModules = [
./system/hyprland.nix
];