From afe2c4c8651c137c44ec45c5e01948979cb77bc7 Mon Sep 17 00:00:00 2001 From: Anomalocaridid <29845794+Anomalocaridid@users.noreply.github.com> Date: Tue, 6 Aug 2024 21:38:36 -0400 Subject: [PATCH] fix(home-manager/tofi): avoid IFD (#301) --- modules/home-manager/tofi.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/home-manager/tofi.nix b/modules/home-manager/tofi.nix index 6972f19..3995061 100644 --- a/modules/home-manager/tofi.nix +++ b/modules/home-manager/tofi.nix @@ -8,6 +8,6 @@ in options.programs.tofi.catppuccin = lib.ctp.mkCatppuccinOpt { name = "tofi"; }; config.programs.tofi = lib.mkIf enable { - settings = lib.ctp.fromINI (sources.tofi + "/themes/catppuccin-${cfg.flavor}"); + settings.include = sources.tofi + "/themes/catppuccin-${cfg.flavor}"; }; }