nixos/modules/desktop/chat/discord.nix

15 lines
281 B
Nix
Raw Normal View History

2023-07-07 21:38:41 +04:00
{ options, config, lib, pkgs, ...}:
with lib;
let cfg = config.modules.desktop.chat.discord;
in {
options.modules.desktop.chat.discord = {
enable = mkBoolOpt false;
};
config = mkIf cfg.enable {
users.users.sako.packages = with pkgs; [
discord
];
};
}