diff options
author | lassulus <lass@aidsballs.de> | 2016-04-09 14:21:39 +0200 |
---|---|---|
committer | lassulus <lass@aidsballs.de> | 2016-04-09 14:21:39 +0200 |
commit | 7af3dfe9bf367f02619881c47060b4645d12f71e (patch) | |
tree | 6d5aaeba9375a8fbd1a020343782995fd04f906b /lass/2configs/websites/wohnprojekt-rhh.de.nix | |
parent | b517ea29707efc6677fe8c0e7ff6dadff4de3c3d (diff) |
l 2 websites: use helper functions
Diffstat (limited to 'lass/2configs/websites/wohnprojekt-rhh.de.nix')
-rw-r--r-- | lass/2configs/websites/wohnprojekt-rhh.de.nix | 20 |
1 files changed, 13 insertions, 7 deletions
diff --git a/lass/2configs/websites/wohnprojekt-rhh.de.nix b/lass/2configs/websites/wohnprojekt-rhh.de.nix index ac784d4c7..4e3eb071a 100644 --- a/lass/2configs/websites/wohnprojekt-rhh.de.nix +++ b/lass/2configs/websites/wohnprojekt-rhh.de.nix @@ -1,14 +1,20 @@ -{ config, ... }: +{ config, pkgs, lib, ... }: -{ +let + inherit (config.krebs.lib) genid; + inherit (import ../../4lib { inherit lib pkgs; }) + manageCert + activateACME + ssl + servePage + serveOwncloud; + +in { imports = [ - ../../3modules/static_nginx.nix + ( ssl "wohnprojekt-rhh.de" ) + ( servePage "wohnprojekt-rhh.de" ) ]; - lass.staticPage = { - "wohnprojekt-rhh.de" = {}; - }; - users.users.laura = { home = "/srv/http/wohnprojekt-rhh.de"; createHome = true; |