From 49c20827a139fe582610d913a40d3c7ac89f9400 Mon Sep 17 00:00:00 2001 From: RGBCube Date: Thu, 2 Nov 2023 14:35:34 +0300 Subject: [PATCH] Fix fuzzel config --- machines/enka/fuzzel/default.nix | 33 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 17 deletions(-) diff --git a/machines/enka/fuzzel/default.nix b/machines/enka/fuzzel/default.nix index 5430fad..a86c499 100644 --- a/machines/enka/fuzzel/default.nix +++ b/machines/enka/fuzzel/default.nix @@ -2,27 +2,26 @@ homeConfiguration "nixos" { programs.fuzzel = enabled { - settings = '' - font = JetBrainsMono:size=12 - prompt = "❯ " + settings.main = { + font = "JetBrainsMono:size=12"; + prompt = "❯ "; - terminal = kitty + terminal = "kitty"; - tabs = 4 + tabs = 4; - horizontal-pad = 10 - vertical-pad = 10 - inner-pad = 5 + horizontal-pad = 10; + vertical-pad = 10; + inner-pad = 5; - background-color = 1D2021 - text = DDC7A1 - match = D79921 - selection = DDC7A1 - selection-text = 1D2021 - border = D79921 + background-color = "1D2021"; + text = "DDC7A1"; + match = "D79921"; + selection = "DDC7A1"; + selection-text = "1D2021"; + border = "D79921"; + }; - [border] - radius = 0 - ''; + settings.border.radius = 0; }; }