He sudo on my nixos-rebuild till I switch
0

Configure Feed

Select the types of activity you want to include in your feed.

init email (gotta add a flake for protonmail-bridge)

Madeline Hashcube (Mar 24, 2026, 10:30 PM -0500) f99001f8 84565cc0

+40
+1
users/hashcube/default.nix
··· 8 8 ./theming/. 9 9 ./pkgs/. 10 10 11 + ./email.nix 11 12 ./user.nix 12 13 ./catppuccin.nix 13 14 ./files.nix
+39
users/hashcube/email.nix
··· 1 + { ... }: 2 + 3 + { 4 + accounts.email.accounts = { 5 + hashcube = { 6 + enable = true; 7 + address = "hashcube.dev@proton.me"; 8 + flavor = "plain"; 9 + 10 + aerc = { 11 + enable = true; 12 + }; 13 + 14 + # it's local host because of protonmail-bridge 15 + smtp = { 16 + host = "127.0.0.1"; 17 + port = 1025; 18 + tls = { 19 + enable = true; 20 + useStartTls = true; 21 + }; 22 + }; 23 + imap = { 24 + host = "127.0.0.1"; 25 + port = 1144; 26 + tls = { 27 + enable = true; 28 + useStartTls = true; 29 + }; 30 + }; 31 + 32 + }; 33 + }; 34 + /* * 35 + services.protonmail-bridge = { 36 + enable = false; 37 + }; 38 + # */ 39 + }