Slightly cleanup flake system config definition
This commit is contained in:
parent
a954a119e8
commit
07cce0e8a8
18
flake.nix
18
flake.nix
|
@ -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
|
||||||
];
|
];
|
||||||
|
|
Loading…
Reference in a new issue