fruitbasket/modules/web/manual.nix

11 lines
160 B
Nix
Raw Normal View History

2024-03-11 22:49:12 +01:00
{ config, ... }:
2023-10-23 10:47:40 +02:00
let
domain = "manual.${config.networking.domain}";
in
{
services.ese-manual = {
enable = true;
hostName = domain;
};
}