From 61eb3d663e153daa4060ab0cbcadff1cbdbc7d58 Mon Sep 17 00:00:00 2001 From: Armel van Ravels Date: Mon, 29 Jun 2026 23:07:07 +0200 Subject: [PATCH] drop heroic and add discord --- systems/gandalf/default.nix | 1 + systems/modules/discord.nix | 8 ++++++++ systems/modules/gaming.nix | 1 - 3 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 systems/modules/discord.nix diff --git a/systems/gandalf/default.nix b/systems/gandalf/default.nix index 672972a..bb11195 100644 --- a/systems/gandalf/default.nix +++ b/systems/gandalf/default.nix @@ -28,6 +28,7 @@ ../modules/vlc.nix ../modules/devenv.nix ../modules/btop.nix + ../modules/discord.nix ./mtp-fix.nix ]; diff --git a/systems/modules/discord.nix b/systems/modules/discord.nix new file mode 100644 index 0000000..cd13fcb --- /dev/null +++ b/systems/modules/discord.nix @@ -0,0 +1,8 @@ +{ config, pkgs, ... }: + +{ + environment.systemPackages = with pkgs; [ + discord + ]; +} + diff --git a/systems/modules/gaming.nix b/systems/modules/gaming.nix index 6c4d047..90733c3 100644 --- a/systems/modules/gaming.nix +++ b/systems/modules/gaming.nix @@ -14,7 +14,6 @@ }; environment.systemPackages = [ - pkgs.heroic pkgs.mangohud ]; }