From e60c75cde615395e0fdb7b4b2619d92a57e041ff Mon Sep 17 00:00:00 2001 From: Antoine Viallon Date: Wed, 22 Jan 2025 15:17:26 +0100 Subject: [PATCH] [Filesystems] enable systembus-notify, make x11 conditional on desktop enabled --- filesystems.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/filesystems.nix b/filesystems.nix index 71597f2..85a7bf1 100644 --- a/filesystems.nix +++ b/filesystems.nix @@ -130,9 +130,10 @@ in recipient = "antoine@lesviallon.fr"; }; notifications.x11 = { - enable = true; + enable = config.aviallon.desktop.enable; display = ":0"; }; + notifications.systembus-notify.enable = config.aviallon.desktop.enable; }; }; }