2016-04-09 14:21:39 +02:00
|
|
|
{ config, pkgs, lib, ... }:
|
2015-12-12 18:21:50 +01:00
|
|
|
|
2016-04-09 14:21:39 +02:00
|
|
|
let
|
2016-10-20 21:40:11 +02:00
|
|
|
inherit (import <stockholm/lib>)
|
2016-05-31 23:26:35 +02:00
|
|
|
genid
|
|
|
|
;
|
|
|
|
inherit (import <stockholm/lass/2configs/websites/util.nix> {inherit lib pkgs;})
|
2016-04-09 14:21:39 +02:00
|
|
|
ssl
|
2016-05-31 23:26:35 +02:00
|
|
|
servePage
|
|
|
|
;
|
2016-04-09 14:21:39 +02:00
|
|
|
in {
|
2015-12-12 18:21:50 +01:00
|
|
|
imports = [
|
2016-04-13 16:32:04 +02:00
|
|
|
( ssl [ "wohnprojekt-rhh.de" ])
|
|
|
|
( servePage [ "wohnprojekt-rhh.de" ])
|
2015-12-12 18:21:50 +01:00
|
|
|
];
|
|
|
|
|
2016-02-01 15:58:35 +01:00
|
|
|
users.users.laura = {
|
|
|
|
home = "/srv/http/wohnprojekt-rhh.de";
|
|
|
|
createHome = true;
|
|
|
|
useDefaultShell = true;
|
|
|
|
};
|
2015-12-12 18:21:50 +01:00
|
|
|
}
|
|
|
|
|