diff --git a/hosts/reykjavik/default.nix b/hosts/reykjavik/default.nix index faac6f2..10b6d1a 100644 --- a/hosts/reykjavik/default.nix +++ b/hosts/reykjavik/default.nix @@ -105,7 +105,7 @@ in # - Gaming ----------------------------------- gaming.lutris.enable = true; gaming.steam.enable = true; - app.discord.enable = false; + app.discord.enable = true; }; # - Extra / Temporary -------------------------- diff --git a/overlays/default.nix b/overlays/default.nix index 1a5447a..7e3b7d9 100644 --- a/overlays/default.nix +++ b/overlays/default.nix @@ -1,5 +1,4 @@ { inputs, ... }: [ - (import ./discord.nix { }) (import ./nur.nix { nur = inputs.nur; }) ] diff --git a/overlays/discord.nix b/overlays/discord.nix deleted file mode 100644 index 2771a88..0000000 --- a/overlays/discord.nix +++ /dev/null @@ -1,9 +0,0 @@ -{ ... }: -( - final: prev: - { - discord = prev.discord.overrideAttrs (_: { - src = builtins.fetchTarball https://discord.com/api/download?platform=linux&format=tar.gz; - }); - } -)