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

25 lines
418 B
Nix
Raw Normal View History

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
inherit (config.krebs.lib) genid;
inherit (import ../../4lib { inherit lib pkgs; })
manageCert
activateACME
ssl
servePage
serveOwncloud;
in {
2015-12-12 17:21:50 +00:00
imports = [
2016-04-09 12:21:39 +00:00
( ssl "wohnprojekt-rhh.de" )
( servePage "wohnprojekt-rhh.de" )
2015-12-12 17:21:50 +00:00
];
users.users.laura = {
home = "/srv/http/wohnprojekt-rhh.de";
createHome = true;
useDefaultShell = true;
};
2015-12-12 17:21:50 +00:00
}