summaryrefslogtreecommitdiff
path: root/common/programs/btop.nix
diff options
context:
space:
mode:
authorbrustybee <bee@4d2.org>2026-03-07 05:10:56 +0530
committerbrustybee <bee@4d2.org>2026-03-07 05:10:56 +0530
commit20bb620ba13e9dd2617782fd8b48f02abed9d2ad (patch)
tree5d93312e4d3a70f84352d114e0c95e9af62f3836 /common/programs/btop.nix
parentff3198ee65f1c217d51be133816a76c0648afcd7 (diff)
Fix modules to properly guard HM-only config from NixOS evaluatio
Diffstat (limited to 'common/programs/btop.nix')
-rw-r--r--common/programs/btop.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/programs/btop.nix b/common/programs/btop.nix
index aa548e9..a030e3d 100644
--- a/common/programs/btop.nix
+++ b/common/programs/btop.nix
@@ -3,7 +3,7 @@
programs.btop = {
enable = true;
settings = {
- color_theme = lib.optionals config.beeMods.matugen.enable "matugen";
+ color_theme = lib.optionalString config.beeMods.matugen.enable "matugen";
theme_background = false;
truecolor = true;
vim_keys = true;