discord krisp patcher
This commit is contained in:
parent
bc15f2576c
commit
fe2d3286b0
@ -4,6 +4,31 @@
|
|||||||
pkgs,
|
pkgs,
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
|
let
|
||||||
|
krisp-patcher =
|
||||||
|
pkgs.writers.writePython3Bin "krisp-patcher"
|
||||||
|
{
|
||||||
|
libraries = builtins.attrValues {
|
||||||
|
inherit (pkgs.python3Packages)
|
||||||
|
capstone
|
||||||
|
pyelftools
|
||||||
|
;
|
||||||
|
};
|
||||||
|
flakeIgnore = [
|
||||||
|
"E501" # line too long (82 > 79 characters)
|
||||||
|
"F403" # 'from module import *' used; unable to detect undefined names
|
||||||
|
"F405" # name may be undefined, or defined from star imports: module
|
||||||
|
];
|
||||||
|
}
|
||||||
|
(
|
||||||
|
builtins.readFile (
|
||||||
|
pkgs.fetchurl {
|
||||||
|
url = "https://pastebin.com/raw/8tQDsMVd";
|
||||||
|
sha256 = "sha256-IdXv0MfRG1/1pAAwHLS2+1NESFEz2uXrbSdvU9OvdJ8=";
|
||||||
|
}
|
||||||
|
)
|
||||||
|
);
|
||||||
|
in
|
||||||
{
|
{
|
||||||
options.my.apps.internet.enable = lib.mkEnableOption "enable";
|
options.my.apps.internet.enable = lib.mkEnableOption "enable";
|
||||||
config = lib.mkIf config.my.apps.internet.enable {
|
config = lib.mkIf config.my.apps.internet.enable {
|
||||||
@ -87,21 +112,23 @@
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
programs.geary.enable = true;
|
programs.geary.enable = true;
|
||||||
users.users.jawz.packages = builtins.attrValues {
|
users.users.jawz.packages =
|
||||||
inherit (pkgs)
|
[ krisp-patcher ]
|
||||||
thunderbird # email client
|
++ builtins.attrValues {
|
||||||
warp # transfer files with based ppl
|
inherit (pkgs)
|
||||||
brave # crypto-browser that at least somewhat integrates with gtk
|
thunderbird # email client
|
||||||
# nextcloud-client # self-hosted google-drive alternative
|
warp # transfer files with based ppl
|
||||||
fragments # beautiful torrent client
|
brave # crypto-browser that at least somewhat integrates with gtk
|
||||||
tor-browser-bundle-bin # dark web, so dark!
|
# nextcloud-client # self-hosted google-drive alternative
|
||||||
telegram-desktop # furry chat
|
fragments # beautiful torrent client
|
||||||
nicotine-plus # remember Ares?
|
tor-browser-bundle-bin # dark web, so dark!
|
||||||
discord # :3
|
telegram-desktop # furry chat
|
||||||
vdhcoapp # video download helper assistant
|
nicotine-plus # remember Ares?
|
||||||
# nextcloud-talk-desktop # nextcloud talk client
|
discord # :3
|
||||||
fractal # matrix client
|
vdhcoapp # video download helper assistant
|
||||||
;
|
nextcloud-talk-desktop # nextcloud talk client
|
||||||
};
|
fractal # matrix client
|
||||||
|
;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user