Ajout de nullmailer et d'utilitaires différents

merge-requests/7/merge
Lyes Saadi 2025-05-29 19:19:51 +02:00
parent 866037cb20
commit 69c1169c81
No known key found for this signature in database
GPG Key ID: 55A1D803917CF39A
2 changed files with 21 additions and 0 deletions

View File

@ -9,6 +9,7 @@
./ntp.nix ./ntp.nix
./restic_client.nix ./restic_client.nix
./monitoring.nix ./monitoring.nix
./nullmailer.nix
./users.nix ./users.nix
]; ];
@ -30,7 +31,11 @@
programs.vim.enable = true; programs.vim.enable = true;
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
bat
fd
helix
nfs-utils nfs-utils
ripgrep
shelldap shelldap
]; ];
} }

View File

@ -0,0 +1,16 @@
{ ... }:
{
services.nullmailer = {
enable = true;
config = {
remotes = ''
smtp.adm.crans.org smtp
'';
adminaddr = "root@crans.org";
defaulthost = "crans.org";
allmailfrom = "root@crans.org";
};
};
}