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 = { programs.gnupg.agent = {
enable = true; enable = true;
enableSSHSupport = 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,42 +1,20 @@
{ pkgs, ... }: { pkgs, ... }:
{ {
environment.systemPackages = with pkgs; [
environment.systemPackages = signal-desktop
let element-desktop
editors = with pkgs; [ zulip
vscode vesktop
emacs wireguard-tools
jetbrains.gateway bitwarden
jetbrains.rust-rover kitty
]; nil
vlc
messengers = with pkgs; [ spotify
signal-desktop calibre
element-desktop zotero
zulip obsidian
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 = { virtualisation = {
docker.enable = true; docker.enable = true;
@ -44,9 +22,17 @@
programs = { programs = {
firefox.enable = true; firefox.enable = true;
thunderbird = { };
home = {
programs.thunderbird = {
enable = true; enable = true;
package = pkgs.thunderbird-latest; package = pkgs.thunderbird-latest;
profiles.default.isDefault = true;
profiles.default.settings = {
"mail.openpgp.allow_external_gnupg" = true;
"mail.openpgp.fetch_pubkeys_from_gnupg" = true;
};
}; };
}; };