about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--home/default.nix8
-rw-r--r--home/gpg/default.nix44
-rw-r--r--home/mail/accounts/default.nix93
-rw-r--r--home/mail/default.nix12
-rw-r--r--home/secrets/fastmail/imap.age5
-rw-r--r--hosts/aptos/home.nix9
-rw-r--r--nix/mkHomeManagerConfiguration.nix1
7 files changed, 0 insertions, 172 deletions
diff --git a/home/default.nix b/home/default.nix
deleted file mode 100644
index 779af4e..0000000
--- a/home/default.nix
+++ /dev/null
@@ -1,8 +0,0 @@
-{ ... }:
-
-{
-  imports = [
-    ./gpg
-    ./mail
-  ];
-}
diff --git a/home/gpg/default.nix b/home/gpg/default.nix
deleted file mode 100644
index b56377d..0000000
--- a/home/gpg/default.nix
+++ /dev/null
@@ -1,44 +0,0 @@
-{ pkgs, config, lib, ... }:
-let cfg = config.my.home.gpg;
-in
-{
-  options.my.home.gpg = with lib; {
-    enable = mkEnableOption "gpg configuration";
-    pinentry = mkOption {
-      type = types.str;
-      default = "tty";
-      example = "gnome3";
-      description = "Which pinentry interface to use";
-    };
-    defaultKey = mkOption {
-      type = types.str;
-      default = null;
-      description = "Default GPG key";
-    };
-  };
-
-  config = lib.mkIf cfg.enable {
-    home.packages = with pkgs; [ yubikey-manager ];
-
-    programs.gpg = {
-      enable = true;
-      homedir = "${config.xdg.configHome}/gnupg";
-      settings = {
-        default-key = cfg.defaultKey;
-        personal-cipher-preferences = "AES256 AES192 AES";
-        personal-digest-preferences = "SHA512 SHA384 SHA256";
-        personal-compress-preferences = "ZLIB BZIP2 ZIP Uncompressed";
-        keyid-format = "long";
-        with-fingerprint = true;
-      };
-    };
-    services.gpg-agent = {
-      enable = false;
-      enableSshSupport = false; # ensure we're not defaulting to GPG
-      pinentryFlavor = cfg.pinentry;
-      extraConfig = ''
-        allow-loopback-pinentry
-      '';
-    };
-  };
-}
diff --git a/home/mail/accounts/default.nix b/home/mail/accounts/default.nix
deleted file mode 100644
index de735b5..0000000
--- a/home/mail/accounts/default.nix
+++ /dev/null
@@ -1,93 +0,0 @@
-{ config, lib, pkgs, self, ... }:
-let cfg = config.my.home.mail;
-in
-{
-  config = lib.mkIf cfg.enable {
-    # to replace the secret go to
-    # https://app.fastmail.com/settings/security/devicekeys
-    homeage.file."fastmail-imap" = {
-      source = "${self}/home/secrets/fastmail/imap.age";
-    };
-
-    accounts.email = {
-      accounts = {
-        Fastmail = rec {
-          primary = true;
-          address = "franck@fcuny.net";
-          userName = address;
-          realName = "Franck Cuny";
-          aliases = [ "franck.cuny@gmail.com" ];
-          passwordCommand = "${pkgs.coreutils}/bin/cat '${config.homeage.mount}/fastmail-imap'";
-          imap.host = "imap.fastmail.com";
-          smtp.host = "smtp.fastmail.com";
-          mbsync = {
-            enable = true;
-            create = "maildir";
-            expunge = "both";
-            extraConfig.channel.CopyArrivalDate = "yes";
-          };
-          msmtp.enable = true;
-          notmuch.enable = true;
-        };
-      };
-    };
-
-    programs.mbsync.enable = true;
-    programs.msmtp.enable = true;
-
-    programs.afew = {
-      enable = true;
-      extraConfig = ''
-        [SpamFilter]
-        [KillThreadsFilter]
-        [ArchiveSentMailsFilter]
-
-        [FolderNameFilter]
-        maildir_separator = /
-        folder_transforms = Archive:archive Drafts:draft Sent:sent
-        folder_lowercases = true
-
-        [MailMover]
-        folders = Fastmail/Inbox
-        rename = True
-        max_age = 30
-
-        # rules
-        Fastmail/Inbox = 'tag:archive':Fastmail/Archive
-      '';
-    };
-
-    programs.notmuch = {
-      enable = true;
-      maildir.synchronizeFlags = true;
-      new.tags = [ "unread" "new" ];
-      new.ignore = [ "Trash" ];
-      search.excludeTags = [ "spam" "deleted" ];
-      hooks = {
-        postNew = "${config.home.profileDirectory}/bin/afew -v --tag --new --notmuch-config=${config.xdg.configHome}/notmuch/default/config";
-      };
-    };
-
-    systemd.user.services.mbsync = {
-      Unit = { Description = "mbsync synchronization"; };
-      Service = {
-        Type = "oneshot";
-        ExecStartPre = [
-          "${pkgs.notmuch}/bin/notmuch tag '-inbox' 'tag:inbox AND tag:archive'"
-          "${pkgs.afew}/bin/afew -m -v --notmuch-config=${config.xdg.configHome}/notmuch/default/config"
-        ];
-        ExecStart = "${pkgs.isync}/bin/mbsync -a";
-        ExecStartPost = "${pkgs.notmuch}/bin/notmuch new --quiet";
-      };
-    };
-
-    systemd.user.timers.mbsync = {
-      Unit = { Description = "mbsync synchronization"; };
-      Timer = {
-        OnBootSec = "30";
-        OnUnitActiveSec = "5m";
-      };
-      Install = { WantedBy = [ "timers.target" ]; };
-    };
-  };
-}
diff --git a/home/mail/default.nix b/home/mail/default.nix
deleted file mode 100644
index 88cae37..0000000
--- a/home/mail/default.nix
+++ /dev/null
@@ -1,12 +0,0 @@
-{ config, lib, ... }:
-let
-  cfg = config.my.home.mail;
-  mkRelatedOption = desc: lib.mkEnableOption desc // { default = cfg.enable; };
-in
-{
-  imports = [ ./accounts ];
-  options.my.home.mail = with lib; {
-    enable = mkEnableOption "email configuration";
-  };
-  config = { accounts.email = { maildirBasePath = ".mail"; }; };
-}
diff --git a/home/secrets/fastmail/imap.age b/home/secrets/fastmail/imap.age
deleted file mode 100644
index 07dfdd1..0000000
--- a/home/secrets/fastmail/imap.age
+++ /dev/null
@@ -1,5 +0,0 @@
-age-encryption.org/v1
--> X25519 f/Opj/dLP20YsybwZwwfCBRcb4wWVSMv4P9tuVQUNDA
-9xBaFHWpO15X2nt1urk5f59K5x7oRHxIi5q7B8UvM+Q
---- huYSJRJfQnxoHH5APR9tm+NS/xtyw56bRImLdcwiY3Q
-xk>w:lR+i[oVZL?
\ No newline at end of file
diff --git a/hosts/aptos/home.nix b/hosts/aptos/home.nix
index 61ceeb9..7df0537 100644
--- a/hosts/aptos/home.nix
+++ b/hosts/aptos/home.nix
@@ -4,13 +4,4 @@
     "${self}/home/profiles/workstation.nix"
     "${self}/home/profiles/sway.nix"
   ];
-
-  my.home = {
-    mail.enable = true;
-    gpg = {
-      enable = true;
-      pinentry = "gnome3";
-      defaultKey = "23348B57F01D4234B5CFBA0923208AC01EB6EEA1";
-    };
-  };
 }
diff --git a/nix/mkHomeManagerConfiguration.nix b/nix/mkHomeManagerConfiguration.nix
index fc98c7c..38bc19f 100644
--- a/nix/mkHomeManagerConfiguration.nix
+++ b/nix/mkHomeManagerConfiguration.nix
@@ -10,7 +10,6 @@ let
 in
 inputs.home-manager.lib.homeManagerConfiguration {
   modules = [
-    "${self}/home"
     "${self}/hosts/${hostname}/home.nix"
     {
       home = {