feat: lock some thunderbird options in system config

This commit is contained in:
Nydragon 2024-07-10 00:28:12 +02:00
parent 8cbc85596b
commit 79f2dc99e2
3 changed files with 9 additions and 10 deletions

View file

@ -1,4 +1,9 @@
{ pkgs, config, ... }: {
pkgs,
config,
lib,
...
}:
{ {
programs.rofi = programs.rofi =
let let
@ -19,9 +24,8 @@
"run" "run"
# WARNING: ABI version mismatch # WARNING: ABI version mismatch
# "calc" # "calc"
# TODO: Update to use nixpkgs version of cliphist "clipboard:${lib.my.checkPath pkgs.cliphist "cliphist-rofi-img"}"
"clipboard:cliphist-rofi-img" "obsidian:${lib.my.checkPath pkgs.rofi-obsidian "rofi-obsidian"}"
"obsidian:${pkgs.rofi-obsidian}/bin/rofi-obsidian"
]; ];
matching = "fuzzy"; matching = "fuzzy";
sort = true; sort = true;

View file

@ -5,12 +5,6 @@
settings = { settings = {
# https://superuser.com/a/13551 # https://superuser.com/a/13551
"mailnews.wraplength" = 80; "mailnews.wraplength" = 80;
"mail.pane_config.dynamic" = 2;
"mail.biff.play_sound" = false;
"mail.chat.play_sound" = false;
# Never allow cookies
"network.cookie.cookieBehavior" = 2;
"mailnews.start_page.enabled" = false;
# 1 = Ascending # 1 = Ascending
# 2 = Descending # 2 = Descending
"mailnews.default_sort_order" = 2; "mailnews.default_sort_order" = 2;

View file

@ -5,6 +5,7 @@ lib.mkIf config.programs.thunderbird.enable {
preferences = { preferences = {
"mail.biff.play_sound" = false; "mail.biff.play_sound" = false;
"mail.chat.play_sound" = false; "mail.chat.play_sound" = false;
"mail.pane_config.dynamic" = 2;
}; };
}; };
} }