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

22 lines
374 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; })
ssl
2016-04-13 14:32:04 +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
];
users.users.laura = {
home = "/srv/http/wohnprojekt-rhh.de";
createHome = true;
useDefaultShell = true;
};
2015-12-12 17:21:50 +00:00
}