Removed claws-mail and added thunderbird for GUI CalDAV.

This commit is contained in:
Thai Noodles 2023-12-31 20:17:28 -08:00
parent 4e64fff750
commit 4c53cfb9c5
4 changed files with 12 additions and 4 deletions

View File

@ -110,8 +110,10 @@
bind v split-window -h -c "#{pane_current_path}" bind v split-window -h -c "#{pane_current_path}"
bind c split-window -v -c "#{pane_current_path}" bind c split-window -v -c "#{pane_current_path}"
unbind a # unbind a
bind a new-window # bind a new-window
unbind Enter
bind Enter new-window
unbind Tab unbind Tab
bind Tab last-window bind Tab last-window

View File

@ -33,7 +33,7 @@
origin = bottom-right origin = bottom-right
# Offset from the origin # Offset from the origin
offset = 10x50 offset = 20x20
# Scale factor. It is auto-detected if value is 0. # Scale factor. It is auto-detected if value is 0.
scale = 0 scale = 0

View File

@ -75,6 +75,7 @@
curlie curlie
dig dig
dogdns dogdns
dstat
dua dua
exiftool exiftool
ffmpeg ffmpeg
@ -89,8 +90,11 @@
hexyl hexyl
htmlq htmlq
hugo hugo
iftop
imagemagick imagemagick
ipcalc
ipfetch ipfetch
iptraf-ng
jo jo
john john
jq jq
@ -98,11 +102,13 @@
mdp mdp
mediainfo mediainfo
nb nb
nethogs
oed oed
pdfgrep pdfgrep
phetch phetch
recutils recutils
shellcheck shellcheck
sipcalc
ssss ssss
surfraw surfraw
unrar unrar

View File

@ -2,11 +2,11 @@
{ config, lib, pkgs, inputs, user, ... }: { config, lib, pkgs, inputs, user, ... }:
{ {
users.users.${user.name}.packages = with pkgs; [ users.users.${user.name}.packages = with pkgs; [
claws-mail
ledger ledger
libreoffice libreoffice
pandoc pandoc
pdftk pdftk
#sc-im #sc-im
thunderbird
]; ];
} }