{vencord,vesktop}: remove duplicate testbeds (#885)

Link: https://github.com/danth/stylix/pull/885
Fixes: 7feb1c29bf ("discord: combine nixcord, vencord, and vesktop modules (#854)")

Reviewed-by: NAHO <90870942+trueNAHO@users.noreply.github.com>
This commit is contained in:
Daniel Thwaites 2025-02-21 14:02:30 +00:00 committed by GitHub
parent c424b22396
commit 8b6edfdfa8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 0 additions and 35 deletions

View file

@ -1,21 +0,0 @@
{ lib, pkgs, ... }:
let
package = pkgs.discord.override {
withVencord = true;
};
in
{
stylix.testbed.application = {
enable = true;
name = "discord";
inherit package;
};
environment.systemPackages = [ package ];
nixpkgs.config.allowUnfreePredicate =
pkg:
builtins.elem (lib.getName pkg) [
"discord"
];
}

View file

@ -1,14 +0,0 @@
{ pkgs, ... }:
let
package = pkgs.vesktop;
in
{
stylix.testbed.application = {
enable = true;
name = "vesktop";
inherit package;
};
environment.systemPackages = [ package ];
}