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