mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2025-04-25 16:08:30 +02:00
fixed ssh errors, add hashcash, update mail config, update zsh config
This commit is contained in:
parent
5f4dce9a04
commit
6dece01018
10 changed files with 114 additions and 139 deletions
|
@ -42,7 +42,6 @@ in
|
|||
'';
|
||||
};
|
||||
mbsync.enable = true;
|
||||
msmtp.enable = true;
|
||||
};
|
||||
accounts.email.accounts = {
|
||||
"rouven@rfive.de" = rec {
|
||||
|
@ -59,7 +58,6 @@ in
|
|||
host = "mail.rfive.de";
|
||||
port = 465;
|
||||
};
|
||||
msmtp.enable = true;
|
||||
thunderbird.enable = true;
|
||||
mbsync = {
|
||||
enable = true;
|
||||
|
@ -172,7 +170,6 @@ in
|
|||
};
|
||||
};
|
||||
};
|
||||
msmtp.enable = true;
|
||||
thunderbird.enable = true;
|
||||
neomutt = let c = mbsync.groups.tud.channels; in
|
||||
{
|
||||
|
@ -264,7 +261,6 @@ in
|
|||
};
|
||||
};
|
||||
};
|
||||
msmtp.enable = true;
|
||||
thunderbird.enable = true;
|
||||
neomutt = let c = mbsync.groups.ifsr.channels; in
|
||||
{
|
||||
|
@ -323,7 +319,6 @@ in
|
|||
};
|
||||
};
|
||||
};
|
||||
msmtp.enable = true;
|
||||
thunderbird.enable = true;
|
||||
neomutt = let c = mbsync.groups.gmail.channels; in
|
||||
{
|
||||
|
|
|
@ -13,6 +13,7 @@
|
|||
ffmpeg
|
||||
drawio
|
||||
leafpad
|
||||
gamescope
|
||||
|
||||
# sound
|
||||
pavucontrol
|
||||
|
@ -24,6 +25,8 @@
|
|||
# internet
|
||||
google-chrome
|
||||
filezilla
|
||||
dbeaver
|
||||
apache-directory-studio
|
||||
|
||||
# messaging
|
||||
discord
|
||||
|
@ -53,6 +56,7 @@
|
|||
bacula
|
||||
hcloud
|
||||
jq
|
||||
logseq
|
||||
|
||||
# programming languages
|
||||
cargo
|
||||
|
|
|
@ -23,6 +23,9 @@ in
|
|||
hostname = "falkenstein.vpn.rfive.de";
|
||||
user = "root";
|
||||
port = 2222;
|
||||
extraOptions = {
|
||||
VerifyHostKeyDNS = "ask";
|
||||
};
|
||||
};
|
||||
falkenstein-1 = matchBlocks."rfive.de";
|
||||
"durian" = {
|
||||
|
@ -41,6 +44,10 @@ in
|
|||
"quitte" = {
|
||||
hostname = "quitte.ifsr.de";
|
||||
user = "root";
|
||||
extraOptions = {
|
||||
RequestTTY = "yes";
|
||||
RemoteCommand = "zsh -i";
|
||||
};
|
||||
};
|
||||
"tomate" = {
|
||||
hostname = "tomate.ifsr.de";
|
||||
|
@ -66,6 +73,7 @@ in
|
|||
extraConfig = ''
|
||||
PKCS11Provider /run/current-system/sw/lib/libtpm2_pkcs11.so
|
||||
IdentityFile ~/.ssh/id_ed25519
|
||||
VisualHostKey = yes
|
||||
'';
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue