nixos/services/forty_two.nix
2025-06-22 18:34:40 +02:00

21 lines
318 B
Nix

{ config, pkgs, lib, ... }:
let
irc = import ./forty_two/irc.nix {
inherit config pkgs lib;
};
cfg = config.service.forty_two;
in
{
imports = [
irc
];
options.service.forty_two = {
irc = lib.mkOption {
type = lib.types.bool;
default = false;
description = "Enable the ft_irc server";
};
};
}