stockholm/lass/2configs/websites/wohnprojekt-rhh.de.nix
2016-04-13 16:32:04 +02:00

22 lines
374 B
Nix

{ config, pkgs, lib, ... }:
let
inherit (config.krebs.lib) genid;
inherit (import ../../4lib { inherit lib pkgs; })
ssl
servePage;
in {
imports = [
( ssl [ "wohnprojekt-rhh.de" ])
( servePage [ "wohnprojekt-rhh.de" ])
];
users.users.laura = {
home = "/srv/http/wohnprojekt-rhh.de";
createHome = true;
useDefaultShell = true;
};
}