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

let
  inherit (import <stockholm/krebs/4lib> { config = {}; inherit lib; })
    genid
  ;
  inherit (import <stockholm/lass/2configs/websites/util.nix> {inherit lib pkgs;})
    ssl
    servePage
  ;
in {
  imports = [
    ( ssl [ "wohnprojekt-rhh.de" ])
    ( servePage [ "wohnprojekt-rhh.de" ])
  ];

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