move discord to separate overlay file

This commit is contained in:
LavaDesu 2021-05-28 08:38:14 +07:00
parent 098e58cb7c
commit 6e935a8f5b
Signed by: cilly
GPG key ID: 6500251E087653C9
2 changed files with 10 additions and 9 deletions

9
overlays/discord.nix Normal file
View file

@ -0,0 +1,9 @@
self: super: {
discord-canary = super.discord-canary.override rec {
version = "0.0.123";
src = builtins.fetchurl {
url = "https://dl-canary.discordapp.net/apps/linux/${version}/discord-canary-${version}.tar.gz";
sha256 = "0bijwfsd9s4awqkgxd9c2cxh7y5r06vix98qjp0dkv63r6jig8ch";
};
};
}