Skip to content

Commit

Permalink
Merge pull request #310661 from somasis/boot.plymouth.font
Browse files Browse the repository at this point in the history
nixos/boot.plymouth.font: escape font path
  • Loading branch information
JohnRTitor authored Jul 30, 2024
2 parents 6adf540 + 4f96031 commit cb27644
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nixos/modules/system/boot/plymouth.nix
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ in
# Fonts
"/etc/plymouth/fonts".source = pkgs.runCommand "plymouth-initrd-fonts" {} ''
mkdir -p $out
cp ${cfg.font} $out
cp ${escapeShellArg cfg.font} $out
'';
"/etc/fonts/fonts.conf".text = ''
<?xml version="1.0"?>
Expand Down

0 comments on commit cb27644

Please sign in to comment.