From cd3715f21ae8e13cb8e17dc0e6da692030357785 Mon Sep 17 00:00:00 2001 From: Zynh Ludwig Date: Tue, 30 Jul 2024 23:15:14 -0700 Subject: [PATCH] flameshot: text for configFile --- home/modules/flameshot.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home/modules/flameshot.nix b/home/modules/flameshot.nix index 8d800f9..a4cc6dc 100644 --- a/home/modules/flameshot.nix +++ b/home/modules/flameshot.nix @@ -17,6 +17,6 @@ in config = lib.mkIf cfg.enable { home.packages = with pkgs; [ flameshot ]; - xdg.configFile."flameshot/flameshot.ini" = lib.generators.toINI { } cfg.config; + xdg.configFile."flameshot/flameshot.ini".text = lib.generators.toINI { } cfg.config; }; }