From f7ebe2700de0be2308873d7ac4951882eaaf284c Mon Sep 17 00:00:00 2001 From: mun luna <115883618+mun-luna@users.noreply.github.com> Date: Wed, 8 Jul 2026 13:33:43 +0000 Subject: [PATCH] modules/fastfetch: add .jsonc extension to config file fastfetch claims it "couldnt find config" when no extension (.json or .jsonc) is on the config file, which stops this wrapper from working --- modules/fastfetch/module.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/fastfetch/module.nix b/modules/fastfetch/module.nix index cd92fe8..79fb19c 100644 --- a/modules/fastfetch/module.nix +++ b/modules/fastfetch/module.nix @@ -20,7 +20,7 @@ in }; "config.jsonc" = lib.mkOption { type = wlib.types.file config.pkgs; - default.path = jsonFmt.generate "fastfetch-config" config.settings; + default.path = jsonFmt.generate "fastfetch-config.jsonc" config.settings; description = "fastfetch config file"; }; };