Compare commits
No commits in common. "da023642efc6cd0151d49f8f31a0acc5bf5e386a" and "ce324dc8e2c2378652ef8a6584c7a25f546a81f5" have entirely different histories.
da023642ef
...
ce324dc8e2
2 changed files with 3 additions and 4 deletions
|
|
@ -1,4 +1,4 @@
|
||||||
{ inputs, config, ... }:
|
{ inputs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
imports = [ inputs.synix.nixosModules.mailserver ];
|
imports = [ inputs.synix.nixosModules.mailserver ];
|
||||||
|
|
@ -6,7 +6,7 @@
|
||||||
mailserver = {
|
mailserver = {
|
||||||
enable = true;
|
enable = true;
|
||||||
stateVersion = 3;
|
stateVersion = 3;
|
||||||
localDnsResolver = !config.services.coredns.enable;
|
localDnsResolver = false; # use coredns
|
||||||
accounts = {
|
accounts = {
|
||||||
sid = {
|
sid = {
|
||||||
aliases = [ "postmaster" ];
|
aliases = [ "postmaster" ];
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
{ inputs, config, ... }:
|
{ inputs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
imports = [ inputs.synix.nixosModules.tailscale ];
|
imports = [ inputs.synix.nixosModules.tailscale ];
|
||||||
|
|
@ -6,7 +6,6 @@
|
||||||
services.tailscale = {
|
services.tailscale = {
|
||||||
enable = true;
|
enable = true;
|
||||||
enableSSH = true;
|
enableSSH = true;
|
||||||
acceptDNS = !config.services.coredns.enable;
|
|
||||||
loginServer = "https://hs.sid.ovh";
|
loginServer = "https://hs.sid.ovh";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue