From 5766fe81dda0a79ae405d58281367d918ea00ec3 Mon Sep 17 00:00:00 2001 From: Barrett Ruth Date: Tue, 17 Feb 2026 09:02:23 -0500 Subject: [PATCH] fix: format --- home/modules/editor.nix | 11 ++++++++++- home/modules/ui.nix | 4 ++-- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/home/modules/editor.nix b/home/modules/editor.nix index 55e7bda..45e8879 100644 --- a/home/modules/editor.nix +++ b/home/modules/editor.nix @@ -43,7 +43,16 @@ in luarocks tree-sitter nixfmt-tree - (texlive.combine { inherit (texlive) scheme-small latexindent latexmk lastpage pgf collection-fontsrecommended; }) + (texlive.combine { + inherit (texlive) + scheme-small + latexindent + latexmk + lastpage + pgf + collection-fontsrecommended + ; + }) ]; programs.neovim = { diff --git a/home/modules/ui.nix b/home/modules/ui.nix index d5e9f03..7aeca63 100644 --- a/home/modules/ui.nix +++ b/home/modules/ui.nix @@ -313,8 +313,8 @@ in include ${config.xdg.configHome}/dunst/themes/theme.conf ''; - systemd.user.services.dunst.Service.ExecStart = lib.mkForce - "${pkgs.dunst}/bin/dunst -config ${config.xdg.configHome}/dunst/config"; + systemd.user.services.dunst.Service.ExecStart = + lib.mkForce "${pkgs.dunst}/bin/dunst -config ${config.xdg.configHome}/dunst/config"; xdg.configFile."waybar/themes/midnight.css".text = mkWaybarTheme config.palettes.midnight; xdg.configFile."waybar/themes/daylight.css".text = mkWaybarTheme config.palettes.daylight;