kmail -> thunderbird

This commit is contained in:
Daniel Langbein 2025-01-08 16:23:33 +01:00
parent dd443a4fa3
commit 59609df547
Signed by: langfingaz
GPG Key ID: 6C47C753F0823002
3 changed files with 51 additions and 48 deletions

View File

@ -2,7 +2,6 @@
{ {
imports = [ imports = [
./file-roller.nix # Archive manager: Compress and decompress ./file-roller.nix # Archive manager: Compress and decompress
./thunderbird.nix # email
./ghostwriter.nix # Markdown editor ./ghostwriter.nix # Markdown editor
#./gnome-terminal.nix # Terminal emulator. #./gnome-terminal.nix # Terminal emulator.
./blackbox.nix # Terminal emulator. ./blackbox.nix # Terminal emulator.

View File

@ -56,7 +56,7 @@
# Kontact suite # Kontact suite
# https://kontact.kde.org/ # https://kontact.kde.org/
kdePackages.kontact # Container application for the apps below kdePackages.kontact # Container application for the apps below
kdePackages.kmail # email #kdePackages.kmail # email
kdePackages.kaddressbook # Contacts kdePackages.kaddressbook # Contacts
kdePackages.korganizer # Calendar and tasks kdePackages.korganizer # Calendar and tasks
#kdePackages.akregator # RSS feed reader. Does not support Nextcloud News. #kdePackages.akregator # RSS feed reader. Does not support Nextcloud News.

View File

@ -1,17 +1,23 @@
{ config, pkgs, ... }: { config, pkgs, ... }:
{ {
imports = [
./thunderbird.nix # email
];
users.users.yoda = { users.users.yoda = {
packages = with pkgs; [ packages = with pkgs; [
# #
# DEVELOPMENT # CLI apps
# #
# CLI apps
gnumake # make gnumake # make
wget wget
killall killall
# Graphical apps #
# Multimedia
#
meld # Diff and merge tool meld # Diff and merge tool
# Rip DVD and Blu-ray; rotate and export videos. # Rip DVD and Blu-ray; rotate and export videos.
# Requires gstreamer with plugins to preview encoded video. # Requires gstreamer with plugins to preview encoded video.
@ -24,13 +30,54 @@
identity # Comparing multiple versions of an image or video identity # Comparing multiple versions of an image or video
obs-studio # Video recording and live streaming. obs-studio # Video recording and live streaming.
# obs-studio-plugins.obs-vaapi # gstreammer based VAAPI for H.264, H.265 and AV1 encoding. On some AMD hardware this may perform bettern than FFmpeg VAAPI. # obs-studio-plugins.obs-vaapi # gstreammer based VAAPI for H.264, H.265 and AV1 encoding. On some AMD hardware this may perform bettern than FFmpeg VAAPI.
picard # Music tagger by MusicBrainz
tartube-yt-dlp # Video downloader (front-end for yt-dlp)
#
# Internet Censorship Circumvention
#
unstable.riseup-vpn
# TODO: Can't download VPN config: Invalid cert of https://api.calyx.net (cert issued for calyx.net not api.calyx.net)
#unstable.calyx-vpn
# See ./tor-browser.nix
# See ./tor.nix
#
# OFFICE
#
junction # Choose the application to open a specific file type or URI.
#unstable.servo # Web browser
xournalpp # Handwritte notes
# Office suite.
# For spellcheck, see here: https://nixos.wiki/wiki/LibreOffice#Spellcheck
libreoffice-fresh
zotero # Collect, organize, cite, and share your research sources
anki-bin # Flashcards.
#jameica # Hibiscus plugin -> HBCI online banking. Sparkasse-Nürnberg https://www.willuhn.de/wiki/doku.php?id=support:list:banken:spk#nuernberg.
#planify # Tasks
#endeavour # Tasks
#errands # Tasks
telegram-desktop # TODO: Remove again in favour of Signal
# Other Matrix clients. # Other Matrix clients.
# fluffychat # fluffychat
# Web version: https://app.cinny.in/ # Web version: https://app.cinny.in/
# cinny-desktop # cinny-desktop
# element-desktop, see `element-desktop.nix` # element-desktop, see `element-desktop.nix`
#
# GIS
#
gnome-maps # Map and GPX viewer, personal and public navigation
gpxsee # GPX viewer and analyzer
#qgis
#qgis-ltr # Long Term Release of QGIS
# #
# 3D modeling and printing # 3D modeling and printing
# #
@ -64,49 +111,6 @@
# Multiple G-code flavors supported (RepRap, Makerbot, Mach3, Machinekit, etc.) # Multiple G-code flavors supported (RepRap, Makerbot, Mach3, Machinekit, etc.)
# SuperSlicer is a PrusaSlicer fork (which is a slic3r fork) (previously Slic3r++). # SuperSlicer is a PrusaSlicer fork (which is a slic3r fork) (previously Slic3r++).
#super-slicer #super-slicer
#
# Internet Censorship Circumvention
#
unstable.riseup-vpn
# TODO: Can't download VPN config: Invalid cert of https://api.calyx.net (cert issued for calyx.net not api.calyx.net)
#unstable.calyx-vpn
# See ./tor-browser.nix
# See ./tor.nix
#
# OFFICE
#
# Graphical apps
junction # Choose the application to open a specific file type or URI.
#unstable.servo # Web browser
tartube-yt-dlp # Video downloader (front-end for yt-dlp)
xournalpp # Handwritte notes
# Office suite.
# For spellcheck, see here: https://nixos.wiki/wiki/LibreOffice#Spellcheck
libreoffice-fresh
zotero # Collect, organize, cite, and share your research sources
anki-bin # Flashcards.
#planify # Tasks
#endeavour # Tasks
#errands # Tasks
#jameica # Hibiscus plugin -> HBCI online banking. Sparkasse-Nürnberg https://www.willuhn.de/wiki/doku.php?id=support:list:banken:spk#nuernberg.
picard # Music tagger by MusicBrainz
telegram-desktop # TODO: Remove again in favour of Signal
#
# GIS
#
gnome-maps # Map and GPX viewer, personal and public navigation
gpxsee # GPX viewer and analyzer
#qgis
#qgis-ltr # Long Term Release of QGIS
]; ];
}; };
} }