Add steam to Northstar

Slightly rearrange layout in flake, purely visual change
This commit is contained in:
Evie Litherland-Smith 2024-01-22 06:44:42 +00:00
parent 6b1cbdef29
commit 3abe025784

View file

@ -255,27 +255,16 @@
homeModules = [ ./home/default.nix ]; homeModules = [ ./home/default.nix ];
}; };
## Laptops ## Personal
Northstar = let Northstar = let
hostName = "Northstar"; hostName = "Northstar";
user = "xenia"; user = "xenia";
system = "x86_64-linux"; system = "x86_64-linux";
in systemConfig { inherit hostName user system; }; in systemConfig {
inherit hostName user system;
Ronin = let systemModules = default.systemModules ++ [ ./system/games.nix ];
hostName = "Ronin"; };
user = "elitherl";
system = "x86_64-linux";
in systemConfig { inherit hostName user system; };
## Desktops
Scorch = let
hostName = "Scorch";
user = "elitherl";
system = "x86_64-linux";
in systemConfig { inherit hostName user system; };
Vanguard = let Vanguard = let
hostName = "Vanguard"; hostName = "Vanguard";
@ -286,6 +275,20 @@
systemModules = default.systemModules ++ [ ./system/games.nix ]; systemModules = default.systemModules ++ [ ./system/games.nix ];
}; };
## Work
Ronin = let
hostName = "Ronin";
user = "elitherl";
system = "x86_64-linux";
in systemConfig { inherit hostName user system; };
Scorch = let
hostName = "Scorch";
user = "elitherl";
system = "x86_64-linux";
in systemConfig { inherit hostName user system; };
}; };
}; };
} }