nixos/modules/desktop/chat/discord.nix
2023-07-07 22:46:47 +03:00

18 lines
330 B
Nix

{ options, config, lib, pkgs, ...}:
with lib;
let cfg = config.modules.desktop.chat.discord;
in {
options.modules.desktop.chat.discord = {
enable = mkOption {
type = types.bool;
default = false;
};
};
config = mkIf cfg.enable {
users.users.sako.packages = with pkgs; [
discord
];
};
}