nixos-config/modules/home/discord/default.nix

9 lines
161 B
Nix
Raw Normal View History

2023-12-14 17:17:45 +01:00
{ pkgs, ... }:
2023-11-11 18:34:59 +01:00
{
2023-12-14 17:17:45 +01:00
imports = [ (import ./theme-template.nix) ];
2023-11-11 18:34:59 +01:00
home.packages = with pkgs; [
2023-12-14 17:33:29 +01:00
(discord.override {
withVencord = true;
})
2023-11-11 18:34:59 +01:00
];
}