ooknet/home/programs/desktop/communication/default.nix
2024-01-22 13:58:55 +13:00

13 lines
185 B
Nix

{ lib, ... }:
{
imports = [
./discord
];
options.programs.desktop.communication = {
discord = {
enable = lib.mkEnableOption "Enable discord module";
};
};
}