From afa7f5d491c4a98b0d95bcd62b2b8b2a29d6cae9 Mon Sep 17 00:00:00 2001 From: winston Date: Thu, 17 Aug 2023 04:23:14 +0200 Subject: [PATCH] fix(colorsync): darkman linux exclusive --- home/apps/colorscheme-sync.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/home/apps/colorscheme-sync.nix b/home/apps/colorscheme-sync.nix index e6df6d5..1f627e1 100644 --- a/home/apps/colorscheme-sync.nix +++ b/home/apps/colorscheme-sync.nix @@ -7,6 +7,7 @@ # TODO: de-duplicate across modules lat = 48.210033; lng = 16.363449; + inherit (pkgs.stdenv) isLinux; in { home.packages = [ (pkgs.writeShellApplication { @@ -32,7 +33,7 @@ in { ]; services.darkman = { - enable = true; + enable = isLinux; config = { inherit lat lng; useGeoclue = false;