nix-dotfiles/programs/discord/default.nix
2024-02-16 21:24:57 -08:00

13 lines
301 B
Nix

{ config, pkgs, ... }:
let rootPath = ./.; in
{
home.packages = with pkgs; [
discord # Base app
betterdiscordctl # Better Discord Installer
];
# Better Discord plugins
xdg.configFile."better-discord" = {
source = rootPath + "/plugins";
target = "BetterDiscord/plugins";
};
}