1
0
Fork 0
mirror of https://github.com/Horhik/dotfiles.git synced 2024-07-05 20:53:33 +00:00
Dotfiles/nix/modules/discord.nix

5 lines
215 B
Nix
Raw Normal View History

2021-05-30 19:10:25 +00:00
{config, pkgs, ...}:
{
nixpkgs.overlays = [(self: super: { discord = super.discord.overrideAttrs (_: { src = builtins.fetchTarball "https://discord.com/api/download/stable?platform=linux&format=tar.gz"; });})];
}