thunderbird stuff

This commit is contained in:
Henri Dohmen 2025-05-07 01:11:55 +02:00
parent 59a71b6e11
commit b91a821829
3 changed files with 36 additions and 39 deletions

View file

@ -1,7 +1,9 @@
{ ... }:
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [ seahorse ];
programs.gnupg.agent = {
enable = true;
enableSSHSupport = true;
pinentryPackage = pkgs.pinentry-gtk2;
};
}

9
mod/software/editors.nix Normal file
View file

@ -0,0 +1,9 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
vscode
emacs
jetbrains.gateway
jetbrains.rust-rover
];
}

View file

@ -1,52 +1,38 @@
{ pkgs, ... }:
{
environment.systemPackages =
let
editors = with pkgs; [
vscode
emacs
jetbrains.gateway
jetbrains.rust-rover
];
messengers = with pkgs; [
environment.systemPackages = with pkgs; [
signal-desktop
element-desktop
zulip
vesktop
];
util = with pkgs; [
wireguard-tools
bitwarden
kitty
nil
];
media = with pkgs; [
vlc
spotify
calibre
];
productivity = with pkgs; [
zotero
obsidian
];
in
editors ++ messengers ++ util ++ media ++ productivity;
virtualisation = {
docker.enable = true;
};
programs = {
firefox.enable = true;
thunderbird = {
};
home = {
programs.thunderbird = {
enable = true;
package = pkgs.thunderbird-latest;
profiles.default.isDefault = true;
profiles.default.settings = {
"mail.openpgp.allow_external_gnupg" = true;
"mail.openpgp.fetch_pubkeys_from_gnupg" = true;
};
};
};