feat: ...get internet again. git-hooks.nix adopt

This commit is contained in:
Kat Inskip 2025-08-18 15:13:47 -07:00
parent 7a0f09e700
commit e00ec8f2f2
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
116 changed files with 1157 additions and 4681 deletions

View file

@ -7,30 +7,40 @@ _: {
};
};
accounts.email.accounts = let
katIdentity = {
realName = "Kat Inskip";
};
dorkIdentity = {
realName = "Kat Dork";
};
mainEnable.thunderbird = {
enable = true;
profiles = [ "main" ];
};
gmailAccount = mainEnable // {
katIdentity = {
realName = "Kat Inskip";
};
dorkIdentity = {
realName = "Kat Dork";
};
mainEnable.thunderbird = {
enable = true;
profiles = ["main"];
};
gmailAccount =
mainEnable
// {
flavor = "gmail.com";
};
in {
primary = gmailAccount // katIdentity // {
primary = true;
address = "kat@inskip.me";
};
home = gmailAccount // katIdentity // {
address = "kat.inskip@gmail.com";
};
dork = gmailAccount // dorkIdentity // {
address = "dorkdev99@gmail.com";
};
in {
primary =
gmailAccount
// katIdentity
// {
primary = true;
address = "kat@inskip.me";
};
home =
gmailAccount
// katIdentity
// {
address = "kat.inskip@gmail.com";
};
dork =
gmailAccount
// dorkIdentity
// {
address = "dorkdev99@gmail.com";
};
};
}