diff options
author | stuebinm | 2024-12-05 01:08:36 +0100 |
---|---|---|
committer | stuebinm | 2024-12-05 01:08:36 +0100 |
commit | 4e1b54061515e2b2c16ba6f773eb5ebedbf2340b (patch) | |
tree | 2039babcc74134680f9bf169161747f7427e4d1f /home/home.nix | |
parent | 203aa6daede832cf6a56ef56950e04284df38035 (diff) |
home/ssh: add preprint/billy
Diffstat (limited to 'home/home.nix')
-rw-r--r-- | home/home.nix | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/home/home.nix b/home/home.nix index fa29a20..be50d2d 100644 --- a/home/home.nix +++ b/home/home.nix @@ -83,6 +83,20 @@ userName = "stuebinm@ilztalbahn.eu"; passwordCommand = "secret-tool lookup mail ilztalbahn"; }; + accounts.preprint = { + address = "admin@books.exposed"; + imap.host = "books.exposed"; + mbsync = { + enable = true; + create = "maildir"; + }; + msmtp.enable = true; + mu.enable = true; + realName = "terru"; + smtp.host = "books.exposed"; + userName = "admin@books.exposed"; + passwordCommand = "secret-tool lookup mail preprint"; + }; }; programs.bash = { @@ -342,6 +356,11 @@ user = "root"; identityFile = keydir + "/id_ed25519"; }; + "billy" = { + hostname = "billy.books.exposed"; + user = "root"; + identityFile = keydir + "/id_ed25519"; + }; }; }; |