diff options
| -rw-r--r-- | 1systems/tv/cd.nix | 13 | 
1 files changed, 13 insertions, 0 deletions
| diff --git a/1systems/tv/cd.nix b/1systems/tv/cd.nix index dda9987c9..0e45068a6 100644 --- a/1systems/tv/cd.nix +++ b/1systems/tv/cd.nix @@ -2,6 +2,10 @@  with lib; +let +  Zpkgs = import ../../Zpkgs/tv { inherit pkgs; }; +in +  {    imports = [      ../../2configs/tv/CAC-Developer-2.nix @@ -69,6 +73,15 @@ with lib;        };      }      { +      tv.nginx.servers.viljetic = { +        server-names = singleton "viljetic.de"; +        # TODO directly set root (instead via location) +        locations = singleton (nameValuePair "/" '' +          root ${Zpkgs.viljetic-pages}; +        ''); +      }; +    } +    {        imports = [ ../../3modules/tv/retiolum.nix ];        tv.retiolum = {          enable = true; | 
