add: discord

This commit is contained in:
ooks-io 2024-01-22 13:58:55 +13:00
parent 53a7e7f576
commit bfbd8c11e3
4 changed files with 28 additions and 1 deletions

View file

@ -0,0 +1,11 @@
{ lib, config, pkgs, ... }:
let
cfg = config.programs.desktop.communication.discord;
in
{
config = lib.mkIf cfg.enable {
home.packages = with pkgs; [ vesktop ];
};
}