22 lines
273 B
Nix
22 lines
273 B
Nix
{
|
|
pkgs,
|
|
lib,
|
|
config,
|
|
inputs,
|
|
...
|
|
}:
|
|
|
|
{
|
|
services.mailpit = {
|
|
enable = true;
|
|
smtpListenAddress = "127.0.0.1:1025";
|
|
uiListenAddress = "127.0.0.1:8025";
|
|
};
|
|
|
|
dotenv.enable = true;
|
|
|
|
languages.go = {
|
|
enable = true;
|
|
version = "1.25.2";
|
|
};
|
|
}
|