Compare commits
No commits in common. "1100ac1cae8d05a59e45c680d54ee55a77ca92cf" and "ae4501b5af048f382fb552026b831da7b6b2a9aa" have entirely different histories.
1100ac1cae
...
ae4501b5af
4 changed files with 6 additions and 35 deletions
|
@ -4,7 +4,6 @@
|
||||||
./misskey-service.nix
|
./misskey-service.nix
|
||||||
./heartles-xyz-proxy.nix
|
./heartles-xyz-proxy.nix
|
||||||
./ogdo.nix
|
./ogdo.nix
|
||||||
./postfix.nix
|
|
||||||
];
|
];
|
||||||
|
|
||||||
nix.settings = {
|
nix.settings = {
|
||||||
|
|
12
flake.lock
generated
12
flake.lock
generated
|
@ -2,11 +2,11 @@
|
||||||
"nodes": {
|
"nodes": {
|
||||||
"nixpkgs": {
|
"nixpkgs": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1722221733,
|
"lastModified": 1719838683,
|
||||||
"narHash": "sha256-sga9SrrPb+pQJxG1ttJfMPheZvDOxApFfwXCFO0H9xw=",
|
"narHash": "sha256-Zw9rQjHz1ilNIimEXFeVa1ERNRBF8DoXDhLAZq5B4pE=",
|
||||||
"owner": "NixOS",
|
"owner": "NixOS",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "12bf09802d77264e441f48e25459c10c93eada2e",
|
"rev": "d032c1a6dfad4eedec7e35e91986becc699d7d69",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
@ -24,11 +24,11 @@
|
||||||
},
|
},
|
||||||
"unstable": {
|
"unstable": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1722185531,
|
"lastModified": 1719848872,
|
||||||
"narHash": "sha256-veKR07psFoJjINLC8RK4DiLniGGMgF3QMlS4tb74S6k=",
|
"narHash": "sha256-H3+EC5cYuq+gQW8y0lSrrDZfH71LB4DAf+TDFyvwCNA=",
|
||||||
"owner": "NixOS",
|
"owner": "NixOS",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "52ec9ac3b12395ad677e8b62106f0b98c1f8569d",
|
"rev": "00d80d13810dbfea8ab4ed1009b09100cca86ba8",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|
|
@ -142,11 +142,6 @@ in {
|
||||||
rewrite .* $path_full break;
|
rewrite .* $path_full break;
|
||||||
proxy_pass https://s3.us-west-1.wasabisys.com;
|
proxy_pass https://s3.us-west-1.wasabisys.com;
|
||||||
'';
|
'';
|
||||||
|
|
||||||
locations."/localfiles/" = {
|
|
||||||
root = "/srv/www/localfiles";
|
|
||||||
tryFiles = "$uri =404";
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
|
|
||||||
virtualHosts."egirls.gay" = {
|
virtualHosts."egirls.gay" = {
|
||||||
|
|
23
postfix.nix
23
postfix.nix
|
@ -1,23 +0,0 @@
|
||||||
{ pkgs, config, ... }:
|
|
||||||
|
|
||||||
{
|
|
||||||
services.postfix = {
|
|
||||||
enable = true;
|
|
||||||
enableSubmission = true;
|
|
||||||
domain = config.networking.fqdn;
|
|
||||||
|
|
||||||
config = {
|
|
||||||
inet_interfaces = "loopback-only";
|
|
||||||
smtpd_milters = "inet:127.0.0.1:8891";
|
|
||||||
non_smtpd_milters = "$smtpd_milters";
|
|
||||||
milter_default_action = "accept";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
services.opendkim = {
|
|
||||||
enable = true;
|
|
||||||
selector = "default";
|
|
||||||
socket = "inet:8891@127.0.0.1";
|
|
||||||
domains = "csl:${config.networking.fqdn}";
|
|
||||||
};
|
|
||||||
}
|
|
Loading…
Add table
Add a link
Reference in a new issue