From 796ff75e48aefbac67f12315d09ac780b960f766 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tristan=20Dani=C3=ABl=20Maat?= Date: Mon, 16 Dec 2024 17:32:08 +0800 Subject: [PATCH] fix: Make caffeine icon show up This really is an upstream bug, should add this there. --- home-config/config/desktop/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/home-config/config/desktop/default.nix b/home-config/config/desktop/default.nix index d2aeab92..d354460e 100644 --- a/home-config/config/desktop/default.nix +++ b/home-config/config/desktop/default.nix @@ -1,3 +1,4 @@ +{ pkgs, ... }: { imports = [ ./dunst.nix @@ -7,6 +8,9 @@ ./sway.nix ]; + home.packages = with pkgs; [ + caffeine-ng + ]; services.caffeine.enable = true; xsession.importedVariables = [ "PATH" ]; }