From d3e2f73277c69a3bb0d4d1e086b4ee0fb53ea988 Mon Sep 17 00:00:00 2001 From: OPNA2608 Date: Sat, 18 Jan 2025 20:31:41 +0100 Subject: [PATCH] nixosTests.miracle-wm: Update alacritty config format, switch to pkgs.formats --- nixos/tests/miracle-wm.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/tests/miracle-wm.nix b/nixos/tests/miracle-wm.nix index 2bb62222b22a..96df8bb434b6 100644 --- a/nixos/tests/miracle-wm.nix +++ b/nixos/tests/miracle-wm.nix @@ -59,7 +59,7 @@ ]; # To help with OCR - etc."xdg/foot/foot.ini".text = lib.generators.toINI { } { + etc."xdg/foot/foot.ini".source = (pkgs.formats.ini { }).generate "foot.ini" { main = { font = "inconsolata:size=16"; }; @@ -69,7 +69,7 @@ regular2 = foreground; }; }; - etc."xdg/alacritty/alacritty.yml".text = lib.generators.toYAML { } { + etc."xdg/alacritty/alacritty.toml".source = (pkgs.formats.toml { }).generate "alacritty.toml" { font = rec { normal.family = "Inconsolata"; bold.family = normal.family;