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

7 lines
149 B
Nix

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