From ffafc4a2b68050a2e2d73df70997e8a7b91df455 Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Sun, 24 Sep 2023 19:56:46 +0100 Subject: [PATCH] Add discord --- system/steam.nix | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/system/steam.nix b/system/steam.nix index 124942c8..ccbaa80c 100644 --- a/system/steam.nix +++ b/system/steam.nix @@ -1,9 +1,14 @@ { lib, pkgs, ... }: { - environment.systemPackages = with pkgs; [ prismlauncher ]; + environment.systemPackages = with pkgs; [ prismlauncher discord ]; nixpkgs.config.allowUnfreePredicate = pkg: - builtins.elem (lib.getName pkg) [ "steam" "steam-original" "steam-run" ]; + builtins.elem (lib.getName pkg) [ + "steam" + "steam-original" + "steam-run" + "discord" + ]; hardware = { opengl.driSupport32Bit = true; steam-hardware.enable = true;