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

View file

@ -5,12 +5,6 @@
settings = {
# https://superuser.com/a/13551
"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
# 2 = Descending
"mailnews.default_sort_order" = 2;

View file

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