diff --git a/modules/overlay.nix b/modules/overlay.nix index 22ba4bc..5ca0926 100644 --- a/modules/overlay.nix +++ b/modules/overlay.nix @@ -11,7 +11,7 @@ let let mvalue = if builtins.isBool value then (if value then "true" else "false") - else if (builtins.isString value && key != "include-file") then + else if builtins.isString value then value else builtins.toString value; diff --git a/modules/workspace/kde/default.nix b/modules/workspace/kde/default.nix index da20d8d..a383d66 100644 --- a/modules/workspace/kde/default.nix +++ b/modules/workspace/kde/default.nix @@ -19,13 +19,13 @@ with pkgs.my-lib; { in { services.kdeconnect.enable = true; - xdg.configFile."kdeglobals".text = with thmDec; genIni { + xdg.configFile."kdeglobals".text = with thmDec; lib.generators.toGitINI { "Colors:Button" = { BackgroundAlternate = base01; - BackgroundNormal = base00; + BackgroundNormal = base01; DecorationFocus = base02; DecorationHover = base02; - ForegroundActive = base02; + ForegroundActive = base05; ForegroundInactive = base01; ForegroundLink = base0D; ForegroundNegative = base08; @@ -36,7 +36,7 @@ with pkgs.my-lib; { }; "Colors:Complementary" = { BackgroundAlternate = base01; - BackgroundNormal = base00; + BackgroundNormal = base03; DecorationFocus = base02; DecorationHover = base02; ForegroundActive = base09;