From 952a2afab8a4a3cbd14fcd8474932fbfa1961aea Mon Sep 17 00:00:00 2001 From: OPNA2608 Date: Sat, 18 Jan 2025 20:31:29 +0100 Subject: [PATCH] nixosTests.miriway: Update alacritty config format, switch to pkgs.formats --- nixos/tests/miriway.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/tests/miriway.nix b/nixos/tests/miriway.nix index 14546dd03dff..82522cea7c21 100644 --- a/nixos/tests/miriway.nix +++ b/nixos/tests/miriway.nix @@ -55,7 +55,7 @@ import ./make-test-python.nix ( ]; # 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"; }; @@ -65,7 +65,7 @@ import ./make-test-python.nix ( 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;