From d3b36c30a5a941c30a0a81d2ed01a1d79c3c1198 Mon Sep 17 00:00:00 2001 From: Romain Paquet Date: Fri, 14 Feb 2025 19:21:57 +0100 Subject: [PATCH] add discord on haze --- hosts/haze/default.nix | 1 + hosts/haze/discord.nix | 6 ++++++ 2 files changed, 7 insertions(+) create mode 100644 hosts/haze/discord.nix diff --git a/hosts/haze/default.nix b/hosts/haze/default.nix index 26c7b6b..e83800b 100644 --- a/hosts/haze/default.nix +++ b/hosts/haze/default.nix @@ -9,6 +9,7 @@ inputs.impermanence.nixosModules.impermanence ./beeper.nix ./boot.nix + ./discord.nix ./disk.nix ./thunderbird.nix ./hardware.nix diff --git a/hosts/haze/discord.nix b/hosts/haze/discord.nix new file mode 100644 index 0000000..762a30d --- /dev/null +++ b/hosts/haze/discord.nix @@ -0,0 +1,6 @@ +{ pkgs, ... }: +{ + environment.systemPackages = [ + pkgs.discord + ]; +}