diff --git a/outputs/nixos.nix b/outputs/nixos.nix index b875733..970f7f3 100644 --- a/outputs/nixos.nix +++ b/outputs/nixos.nix @@ -9,8 +9,11 @@ let hosts = "${systemInputs}/hosts"; base = "${systemInputs}/modules/base"; - gaming = "${systemInputs}/modules/roles/gaming"; - workstation = "${systemInputs}/modules/roles/workstation"; + roles = "${systemInputs}/modules/roles"; + gaming = "${roles}/gaming"; + workstation = "${roles}/workstation"; + media-server = "${roles}/media-server"; + specialArgs = {inherit inputs self;}; @@ -28,4 +31,17 @@ in workstation ]; }; + ooksmedia = nixosSystem { + inherit specialArgs; + system = "x86_64-linux"; + modules = [ + "${hosts}/ooksmedia" + hm + base + + gaming + workstation + media-server + ]; + }; }