mirror of https://gitlab.crans.org/nounous/nixos
Ajout de nullmailer et d'utilitaires différents
parent
866037cb20
commit
69c1169c81
|
@ -9,6 +9,7 @@
|
|||
./ntp.nix
|
||||
./restic_client.nix
|
||||
./monitoring.nix
|
||||
./nullmailer.nix
|
||||
./users.nix
|
||||
];
|
||||
|
||||
|
@ -30,7 +31,11 @@
|
|||
programs.vim.enable = true;
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
bat
|
||||
fd
|
||||
helix
|
||||
nfs-utils
|
||||
ripgrep
|
||||
shelldap
|
||||
];
|
||||
}
|
||||
|
|
|
@ -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";
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue