mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 12:29:19 -08:00
16 lines
255 B
Nix
16 lines
255 B
Nix
{
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}: let
|
|
inherit (lib.generators) toJSON;
|
|
in {
|
|
home.packages = with pkgs; [
|
|
(discord-krisp.override {
|
|
withOpenASAR = true;
|
|
withVencord = true; # can do this here too
|
|
})
|
|
vesktop
|
|
#betterdiscordctl
|
|
];
|
|
}
|