summaryrefslogtreecommitdiff
path: root/common/programs
diff options
context:
space:
mode:
Diffstat (limited to 'common/programs')
-rw-r--r--common/programs/btop.nix2
-rw-r--r--common/programs/rofi.nix4
2 files changed, 3 insertions, 3 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;
diff --git a/common/programs/rofi.nix b/common/programs/rofi.nix
index ea55259..d95f547 100644
--- a/common/programs/rofi.nix
+++ b/common/programs/rofi.nix
@@ -64,7 +64,7 @@
xdg.configFile = {
"rofi/shared/default-colors.rasi" = {
- enable = !config.beeModes.matugen.enable;
+ enable = !config.beeMods.matugen.enable;
text =
# rasi
''
@@ -111,7 +111,7 @@
/*****----- Global Properties -----*****/
${
- if config.beeModes.matugen.enable then
+ if config.beeMods.matugen.enable then
''@import "shared/colors.rasi"''
else
''@import "shared/default-colors.rasi"''