diff --git a/modules/default.nix b/modules/default.nix
index 6b9f4c816e2e3f69745db553ff9483085ea8d7e0..0188ec624249b87ff83f899f5376646bb571b57f 100644
--- a/modules/default.nix
+++ b/modules/default.nix
@@ -3,7 +3,6 @@ mbtileserver = ./services/mbtileserver.nix;
home-manager = {
programs = {
aerc = ./home-manager/programs/aerc.nix;
goldendict = ./home-manager/programs/goldendict.nix;
gpxsee = ./home-manager/programs/gpxsee.nix;
josm = ./home-manager/programs/josm.nix;
diff --git a/modules/home-manager/programs/aerc.nix b/modules/home-manager/programs/aerc.nix
deleted file mode 100644
index b87484d73c9b873190bad3d51a874fc9028af2ea..0000000000000000000000000000000000000000
--- a/modules/home-manager/programs/aerc.nix
+++ /dev/null
@@ -1,73 +0,0 @@
-{ config, lib, pkgs, ... }:
-with lib;
-let
{ }
{
Personal = {
source = "imaps://${gUsername}:${gPassword}@imap.gmail.com:993";
outgoing = "smtp+plain://${gUsername}:${gPassword}@smtp.gmail.com:587";
default = "INBOX";
smtp-starttls = "yes";
from =
if fullName != "" then
"${fullName} <${gUsername}@gmail.com>"
else
"${gUsername}@gmail.com";
copy-to = "Sent";
};
};
-in
-{
type = types.package;
default = pkgs.aerc;
defaultText = literalExpression "pkgs.aerc";
description = "aerc package to install.";
type = types.str;
default = "";
description = "Google username.";
type = types.str;
default = "";
description = "Google app password.";
type = types.str;
default = "";
description = "Full name.";
accountsConf = lib.hm.dag.entryAfter [ "writeBoundary" ] activationScript;
-}
application/octet-stream
This content has been proxied by September (3851b).