(Re)install Discord

This commit is contained in:
marc
2026-05-09 21:38:39 +02:00
parent 2d57da56b2
commit 46177d4af0
3 changed files with 1 additions and 11 deletions

View File

@@ -105,7 +105,7 @@ in
# - Gaming ----------------------------------- # - Gaming -----------------------------------
gaming.lutris.enable = true; gaming.lutris.enable = true;
gaming.steam.enable = true; gaming.steam.enable = true;
app.discord.enable = false; app.discord.enable = true;
}; };
# - Extra / Temporary -------------------------- # - Extra / Temporary --------------------------

View File

@@ -1,5 +1,4 @@
{ inputs, ... }: { inputs, ... }:
[ [
(import ./discord.nix { })
(import ./nur.nix { nur = inputs.nur; }) (import ./nur.nix { nur = inputs.nur; })
] ]

View File

@@ -1,9 +0,0 @@
{ ... }:
(
final: prev:
{
discord = prev.discord.overrideAttrs (_: {
src = builtins.fetchTarball https://discord.com/api/download?platform=linux&format=tar.gz;
});
}
)