From 8813742c2a3c533ddbe2f145e10c85d71c98d2d8 Mon Sep 17 00:00:00 2001 From: notohh Date: Sun, 21 May 2023 06:05:50 -0400 Subject: [PATCH] btop: formatting --- home/btop/default.nix | 26 ++++++++++++-------------- 1 file changed, 12 insertions(+), 14 deletions(-) diff --git a/home/btop/default.nix b/home/btop/default.nix index 3c37d0e..0c22bbd 100644 --- a/home/btop/default.nix +++ b/home/btop/default.nix @@ -1,20 +1,18 @@ -{ - ... -}: { +{...}: { programs.btop = { enable = true; settings = { - color_theme = "/home/notoh/.config/btop/themes/catppuccin_mocha.theme"; - theme_background = false; - truecolor = true; - rounded_corners = true; - show_cpu_freq = true; - show_swap = true; - swap_disk = true; - show_disks = true; - only_physical = true; - use_fstab = true; + color_theme = "/home/notoh/.config/btop/themes/catppuccin_mocha.theme"; + theme_background = false; + truecolor = true; + rounded_corners = true; + show_cpu_freq = true; + show_swap = true; + swap_disk = true; + show_disks = true; + only_physical = true; + use_fstab = true; }; }; xdg.configFile."btop/themes/catppuccin_mocha.theme".source = ./catppuccin_mocha.theme; -} \ No newline at end of file +}