mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 04:19:19 -08:00
20 lines
308 B
Nix
20 lines
308 B
Nix
{
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}: {
|
|
home.packages = with pkgs; [
|
|
(discord-krisp.override {
|
|
withOpenASAR = true;
|
|
withMoonlight = true;
|
|
withVencord = false; # can do this here too
|
|
})
|
|
legcord
|
|
#dorion
|
|
#betterdiscordctl
|
|
];
|
|
|
|
programs.moonlight-mod = {
|
|
enable = true;
|
|
};
|
|
}
|