summaryrefslogtreecommitdiff
path: root/common/home
diff options
context:
space:
mode:
authorNathan Reiner <nathan@nathanreiner.xyz>2024-09-19 11:46:13 +0200
committerNathan Reiner <nathan@nathanreiner.xyz>2024-09-19 11:46:13 +0200
commitc21ae620a8f0a9612bcfa6b952e1f5da99d4d753 (patch)
tree92fdf9c3bfd9128a4d47fae9591425e47f879894 /common/home
parente602554469f16b682204299243f7e41b9339dede (diff)
setup llvm for compiler design
Diffstat (limited to 'common/home')
-rw-r--r--common/home/accounts/default.nix2
-rw-r--r--common/home/accounts/email.nix62
-rw-r--r--common/home/default.nix2
-rw-r--r--common/home/services/gpg-agent/default.nix4
4 files changed, 39 insertions, 31 deletions
diff --git a/common/home/accounts/default.nix b/common/home/accounts/default.nix
index d5338dd..635ad9c 100644
--- a/common/home/accounts/default.nix
+++ b/common/home/accounts/default.nix
@@ -1,4 +1,4 @@
{ ... }:
{
- email.accounts = import ./email.nix { };
+ email = import ./email.nix { };
}
diff --git a/common/home/accounts/email.nix b/common/home/accounts/email.nix
index da9be05..0c3de66 100644
--- a/common/home/accounts/email.nix
+++ b/common/home/accounts/email.nix
@@ -1,41 +1,45 @@
{ ... }:
{
- uberspace = {
- userName = "nathan@n8.uber.space";
- address = "nathan@nathanreiner.xyz";
- primary = true;
- realName = "Nathan Reiner";
- passwordCommand = "pass mail/nathan@nathanreiner.xyz";
+ maildirBasePath = ".local/share/mail";
- folders = {
- drafts = "Drafts";
- inbox = "INBOX";
- sent = "Sent";
- trash = "Trash";
- };
+ accounts = {
+ uberspace = {
+ userName = "nathan@n8.uber.space";
+ address = "nathan@nathanreiner.xyz";
+ primary = true;
+ realName = "Nathan Reiner";
+ passwordCommand = "pass mail/nathan@nathanreiner.xyz";
- smtp = {
- host = "menkent.uberspace.de";
- port = 465;
- tls = {
- enable = true;
+ folders = {
+ drafts = "Drafts";
+ inbox = "INBOX";
+ sent = "Sent";
+ trash = "Trash";
};
- };
- imap = {
- host = "menkent.uberspace.de";
- port = 993;
- tls = {
- enable = true;
+ smtp = {
+ host = "menkent.uberspace.de";
+ port = 465;
+ tls = {
+ enable = true;
+ };
};
- };
- mbsync.enable = true;
- msmtp.enable = true;
+ imap = {
+ host = "menkent.uberspace.de";
+ port = 993;
+ tls = {
+ enable = true;
+ };
+ };
+
+ mbsync.enable = true;
+ msmtp.enable = true;
- neomutt = {
- enable = true;
- showDefaultMailbox = true;
+ neomutt = {
+ enable = true;
+ showDefaultMailbox = true;
+ };
};
};
}
diff --git a/common/home/default.nix b/common/home/default.nix
index e64825a..f6bce90 100644
--- a/common/home/default.nix
+++ b/common/home/default.nix
@@ -35,10 +35,10 @@ let
pkgs.pavucontrol
pkgs.wl-clipboard
pkgs.virt-manager
- pkgs.gcc
pkgs.gnumake
pkgs.ocamlPackages.ocamlformat
pkgs.wev
+ pkgs.signal-desktop
];
in
{
diff --git a/common/home/services/gpg-agent/default.nix b/common/home/services/gpg-agent/default.nix
index d29f924..8fa94e7 100644
--- a/common/home/services/gpg-agent/default.nix
+++ b/common/home/services/gpg-agent/default.nix
@@ -2,4 +2,8 @@
{
enable = true;
pinentryPackage = pkgs.pinentry-qt;
+ maxCacheTtl = 60480000;
+ maxCacheTtlSsh = 60480000;
+ defaultCacheTtl = 60480000;
+ defaultCacheTtlSsh = 60480000;
}