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 <noreply@anthropic.com>
This commit is contained in:
ediblerope 2026-04-08 13:56:31 +01:00
parent b4e44ccaaa
commit d3af3052a1

View file

@ -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
'''''';
'';
}