summaryrefslogtreecommitdiffstats
path: root/lass/2configs/websites/wohnprojekt-rhh.de.nix
blob: 0c409ca872a13e8a9b7fc49d877bcd25b666cb41 (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/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;
  };
}