feat(accounts): add emails workflow settings

This commit is contained in:
Yorick Barbanneau 2025-07-15 21:36:05 +02:00
parent e4dcb39fc5
commit 4ba9224348
7 changed files with 402 additions and 15 deletions

View file

@ -1,5 +1,13 @@
{ ... }: {
{ inputs, ... }: {
config.modules = {
email = {
enable = true;
accountConfigs = {
ubordeaux = inputs.nix-private.mail.ubordeaux;
xiemeart = inputs.nix-private.mail.xiemeart;
};
primary = "xiemeart";
};
application = {
gnupg = {
enable = true;

View file

@ -1,6 +1,6 @@
{ ... }:
{
home.file.".config/xkb/symbols/gpdwinmax".text =
home.file.".config/xkb/symbols/gpdwinmax".text =
''
default partial alphanumeric_keys
xkb_symbols "us-intl-winmax" {
@ -30,4 +30,5 @@
scale = "1.3";
};
};
sops.age.keyFile = "/home/ephase/.config/sops/age/keys.txt";
}