Added thunderbird

This commit is contained in:
xeovalyte 2024-08-01 12:44:07 +02:00
parent b2b37b0537
commit e2cd752b7a
Signed by: xeovalyte
SSH Key Fingerprint: SHA256:kSQDrQDmKzljJzfGYcd3m9RqHi4h8rSwkZ3sQ9kBURo
3 changed files with 69 additions and 0 deletions

View File

@ -7,6 +7,7 @@
../../modules/home/gui/hyprland ../../modules/home/gui/hyprland
../../modules/home/gui/nextcloud.nix ../../modules/home/gui/nextcloud.nix
../../modules/home/gui/theming.nix ../../modules/home/gui/theming.nix
../../modules/home/gui/thunderbird.nix
# CLI # CLI
../../modules/home/cli/common ../../modules/home/cli/common
@ -41,6 +42,8 @@
unstable.prusa-slicer unstable.prusa-slicer
signal-desktop signal-desktop
unstable.vesktop unstable.vesktop
unstable.rnote
unstable.blender
# Office # Office
libreoffice libreoffice
@ -49,6 +52,7 @@
# Image editing # Image editing
gimp gimp
inkscape inkscape
unstable.obs-studio
# Development # Development
unstable.drawio unstable.drawio

View File

@ -3,6 +3,8 @@
{ {
home.packages = with pkgs; [ home.packages = with pkgs; [
unstable.devenv unstable.devenv
unstable.surrealist
cloc
]; ];
programs.direnv = { programs.direnv = {

View File

@ -0,0 +1,63 @@
{ pkgs, ... }:
{
programs.thunderbird = {
enable = true;
package = pkgs.unstable.thunderbird;
profiles = {
default = {
isDefault = true;
};
};
};
accounts.email.accounts = {
ziggo = {
imap = {
host = "imap.ziggo.nl";
port = 993;
tls = {
enable = true;
};
};
smtp = {
host = "smtp.ziggo.nl";
port = 587;
tls = {
enable = true;
useStartTls = true;
};
};
address = "timo.boomers@ziggo.nl";
realName = "Timo Boomers";
userName = "timo.boomers@ziggo.nl";
primary = true;
thunderbird.enable = true;
thunderbird.profiles = [ "default" ];
};
xeovalyte = {
imap = {
host = "mail.xeovalyte.dev";
port = 993;
tls = {
enable = true;
};
};
smtp = {
host = "mail.xeovalyte.dev";
port = 587;
tls = {
enable = true;
useStartTls = true;
};
};
address = "timo@xeovalyte.dev";
aliases = [ "me@xeovalyte.dev" "contact@xeovalyte.dev" ];
realName = "Timo Boomers";
userName = "me@xeovalyte.dev";
primary = false;
thunderbird.enable = true;
thunderbird.profiles = [ "default" ];
};
};
}