diff options
author | Simon Parri <simonparri@ganzeria.com> | 2025-06-16 22:05:05 -0500 |
---|---|---|
committer | Simon Parri <simonparri@ganzeria.com> | 2025-06-16 22:05:05 -0500 |
commit | ceef233923bbaa2ff41f8f898e29872a264b0000 (patch) | |
tree | f7db4a6d5269e06743375791de123535c13516e4 | |
parent | 4082f546eaa8b43d4bfe9e09e1260eeddd350f9c (diff) | |
download | nixos-config-ceef233923bbaa2ff41f8f898e29872a264b0000.tar.gz nixos-config-ceef233923bbaa2ff41f8f898e29872a264b0000.zip |
modules/sets: Add mail.tools and use it
-rw-r--r-- | hosts/thyme/packages.nix | 3 | ||||
-rw-r--r-- | hosts/tomato/packages.nix | 3 | ||||
-rw-r--r-- | modules/sets.nix | 7 |
3 files changed, 9 insertions, 4 deletions
diff --git a/hosts/thyme/packages.nix b/hosts/thyme/packages.nix index 7d9926b..6730a10 100644 --- a/hosts/thyme/packages.nix +++ b/hosts/thyme/packages.nix @@ -12,6 +12,7 @@ gui.fonts = true; image.utils = true; image.tools = true; + mail.tools = true; manga.dl = true; media.tools = true; net.tools.full = true; @@ -32,9 +33,7 @@ rclone nethack sil-q - mu emacsPackages.mu4e - isync ppsspp wesnoth ]; diff --git a/hosts/tomato/packages.nix b/hosts/tomato/packages.nix index 51a0f32..37dd00a 100644 --- a/hosts/tomato/packages.nix +++ b/hosts/tomato/packages.nix @@ -16,6 +16,7 @@ in gui.fonts = true; image.utils = true; image.tools = true; + mail.tools = true; manga.dl = true; media.tools = true; net.tools.full = true; @@ -36,9 +37,7 @@ in rclone nethack sil-q - mu emacsPackages.mu4e - isync ppsspp wesnoth luanti diff --git a/modules/sets.nix b/modules/sets.nix index 570c046..6959046 100644 --- a/modules/sets.nix +++ b/modules/sets.nix @@ -30,6 +30,7 @@ in gui.fonts = lib.mkEnableOption "package set"; image.utils = lib.mkEnableOption "package set"; image.tools = lib.mkEnableOption "package set"; + mail.tools = lib.mkEnableOption "package set"; manga.dl = lib.mkEnableOption "package set"; media.tools = lib.mkEnableOption "package set"; net.tools.minimal = lib.mkEnableOption "package set" // { default = cfg.net.tools.full; }; @@ -106,6 +107,12 @@ in gimp inkscape ]; + mail.tools = [ + cyrus-sasl-xoauth2 + isync + mu + oauth2token + ]; manga.dl = [ gallery-dl img2pdf |