stockholm/lass/2configs/websites/wohnprojekt-rhh.de.nix

24 lines
420 B
Nix
Raw Normal View History

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>)
genid
;
inherit (import <stockholm/lass/2configs/websites/util.nix> {inherit lib pkgs;})
2016-04-09 14:21:39 +02:00
ssl
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
];
users.users.laura = {
home = "/srv/http/wohnprojekt-rhh.de";
createHome = true;
useDefaultShell = true;
};
2015-12-12 18:21:50 +01:00
}