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
|
./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
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -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