summaryrefslogtreecommitdiff
path: root/modules/home-manager/personal
diff options
context:
space:
mode:
Diffstat (limited to 'modules/home-manager/personal')
-rw-r--r--modules/home-manager/personal/programs/rofi.nix22
-rw-r--r--modules/home-manager/personal/programs/thunderbird.nix2
2 files changed, 15 insertions, 9 deletions
diff --git a/modules/home-manager/personal/programs/rofi.nix b/modules/home-manager/personal/programs/rofi.nix
index 414cf62..229a29e 100644
--- a/modules/home-manager/personal/programs/rofi.nix
+++ b/modules/home-manager/personal/programs/rofi.nix
@@ -1,13 +1,19 @@
-{ config, lib, pkgs, ... }:
-
{
+ config,
+ lib,
+ pkgs,
+ ...
+}: {
programs.rofi = {
cycle = lib.mkDefault true;
- theme = lib.mkIf (config.lib ? stylix) (lib.mkForce
- (config.lib.stylix.colors {
- template = builtins.readFile config.personal.home.dotfiles.rofi;
- extension = ".rasi";
- }));
- plugins = with pkgs; [ rofi-top rofi-calc rofi-emoji ];
+ theme =
+ lib.mkIf (config.lib ? stylix)
+ (lib.mkForce
+ (config.lib.stylix.colors {
+ template = builtins.readFile config.personal.home.dotfiles.rofi;
+ extension = ".rasi";
+ })
+ .out);
+ plugins = with pkgs; [rofi-top rofi-calc rofi-emoji];
};
}
diff --git a/modules/home-manager/personal/programs/thunderbird.nix b/modules/home-manager/personal/programs/thunderbird.nix
index eb0f5dd..2a93f39 100644
--- a/modules/home-manager/personal/programs/thunderbird.nix
+++ b/modules/home-manager/personal/programs/thunderbird.nix
@@ -30,7 +30,7 @@
"calendar.view.visiblehours" = 16;
"calendar.dayendhour" = 24;
## Duplicates
- "mail.server.default.dup_action" = 3; # mark as read
+ "mail.server.default.dup_action" = 1; # delete
## Spam
"mail.spam.manualMark" = true; # move manually marked-as-junk to junk folder
};