This commit is contained in:
Henri Dohmen 2025-05-30 22:46:27 +02:00
parent a992a7b701
commit b61bb970a5
30 changed files with 69 additions and 34 deletions

View file

@ -1,43 +0,0 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
signal-desktop
element-desktop
zulip
vesktop
wireguard-tools
bitwarden
kitty
nil
vlc
spotify
calibre
zotero
obsidian
];
virtualisation = {
docker.enable = true;
};
programs = {
firefox.enable = true;
};
home = {
programs.thunderbird = {
enable = true;
package = pkgs.thunderbird-latest;
profiles.default = {
isDefault = true;
settings = {
"mail.openpgp.allow_external_gnupg" = true;
"mail.openpgp.fetch_pubkeys_from_gnupg" = true;
};
};
};
};
# Some excludes
services.xserver.excludePackages = [ pkgs.xterm ];
}