From d3af3052a11ecbd6bc3e07be8106faf2fd2a6b8b Mon Sep 17 00:00:00 2001 From: ediblerope Date: Wed, 8 Apr 2026 13:56:31 +0100 Subject: [PATCH] Fix Nix string quoting in fastfetch.nix Python generated '''''' (6 quotes) instead of '' (2 quotes) for Nix multi-line string delimiters, causing a parse error. Co-Authored-By: Claude Opus 4.6 --- apps/fastfetch.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/fastfetch.nix b/apps/fastfetch.nix index b606c2d..8d54e75 100644 --- a/apps/fastfetch.nix +++ b/apps/fastfetch.nix @@ -13,7 +13,7 @@ ]; # Simple fastfetch config — run `fastfetch` manually for system info - environment.etc."fastfetch/config.jsonc".text = '''''' + environment.etc."fastfetch/config.jsonc".text = '' { "$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json", "logo": { @@ -43,10 +43,10 @@ "memory" ] } - ''''''; + ''; # Fish shell settings and custom powerline prompt - programs.fish.interactiveShellInit = '''''' + programs.fish.interactiveShellInit = '' # Disable default greeting set -g fish_greeting @@ -126,5 +126,5 @@ end function fish_right_prompt; end - ''''''; + ''; }