summaryrefslogtreecommitdiffstats
path: root/lass/2configs/websites/wohnprojekt-rhh.de.nix
blob: 4e3eb071a00174bc03ecb95b2bb997cde01e415d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ config, pkgs, lib, ... }:

let
  inherit (config.krebs.lib) genid;
  inherit (import ../../4lib { inherit lib pkgs; })
    manageCert
    activateACME
    ssl
    servePage
    serveOwncloud;

in {
  imports = [
    ( ssl "wohnprojekt-rhh.de" )
    ( servePage "wohnprojekt-rhh.de" )
  ];

  users.users.laura = {
    home = "/srv/http/wohnprojekt-rhh.de";
    createHome = true;
    useDefaultShell = true;
  };
}