Added thunderbird
This commit is contained in:
parent
b2b37b0537
commit
e2cd752b7a
@ -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
|
||||||
|
@ -3,6 +3,8 @@
|
|||||||
{
|
{
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
unstable.devenv
|
unstable.devenv
|
||||||
|
unstable.surrealist
|
||||||
|
cloc
|
||||||
];
|
];
|
||||||
|
|
||||||
programs.direnv = {
|
programs.direnv = {
|
||||||
|
63
modules/home/gui/thunderbird.nix
Normal file
63
modules/home/gui/thunderbird.nix
Normal 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" ];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user