+m3-helios

This commit is contained in:
m3tam3re
2024-11-16 19:58:59 +01:00
parent 431188a943
commit 79df3dd5c7
15 changed files with 437 additions and 2 deletions

View File

@ -0,0 +1,15 @@
{
services.adguardhome = {
enable = true;
openFirewall = true;
settings = {
dns = {
port = 53;
upstream_dns = [
"1.1.1.1"
"8.8.8.8"
];
};
};
};
}

View File

@ -0,0 +1,4 @@
{
imports = [
];
}

View File

@ -0,0 +1,12 @@
{
imports = [
./adguard.nix
./containers
];
systemd.sleep.extraConfig = ''
AllowSuspend=no
AllowHibernation=no
AllowHybridSleep=no
AllowSuspendThenHibernate=no
'';
}