nixos-config/modules/home/discord/default.nix
2023-12-14 17:33:29 +01:00

9 lines
161 B
Nix

{ pkgs, ... }:
{
imports = [ (import ./theme-template.nix) ];
home.packages = with pkgs; [
(discord.override {
withVencord = true;
})
];
}