feat(nixos): add ooksmedia to nixos output
This commit is contained in:
parent
d03d0771df
commit
8f22a24963
1 changed files with 18 additions and 2 deletions
|
|
@ -9,8 +9,11 @@ let
|
||||||
hosts = "${systemInputs}/hosts";
|
hosts = "${systemInputs}/hosts";
|
||||||
base = "${systemInputs}/modules/base";
|
base = "${systemInputs}/modules/base";
|
||||||
|
|
||||||
gaming = "${systemInputs}/modules/roles/gaming";
|
roles = "${systemInputs}/modules/roles";
|
||||||
workstation = "${systemInputs}/modules/roles/workstation";
|
gaming = "${roles}/gaming";
|
||||||
|
workstation = "${roles}/workstation";
|
||||||
|
media-server = "${roles}/media-server";
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
specialArgs = {inherit inputs self;};
|
specialArgs = {inherit inputs self;};
|
||||||
|
|
@ -28,4 +31,17 @@ in
|
||||||
workstation
|
workstation
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
ooksmedia = nixosSystem {
|
||||||
|
inherit specialArgs;
|
||||||
|
system = "x86_64-linux";
|
||||||
|
modules = [
|
||||||
|
"${hosts}/ooksmedia"
|
||||||
|
hm
|
||||||
|
base
|
||||||
|
|
||||||
|
gaming
|
||||||
|
workstation
|
||||||
|
media-server
|
||||||
|
];
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue