nix-dotfiles/programs/discord/default.nix

14 lines
301 B
Nix
Raw Normal View History

{ 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";
};
}