nix-dotfiles/hmModules/apps/discord/app.nix

13 lines
225 B
Nix
Raw Normal View History

2024-04-14 05:40:02 -07:00
{ config, pkgs, lib, ... }:
{
options.discord = {
enable = lib.mkEnableOption "Enables discord";
};
config = lib.mkIf config.discord.enable {
home.packages = with pkgs; [
2025-04-18 20:03:39 -07:00
discord # Base app
2024-04-14 05:40:02 -07:00
];
};
}