feat: deploy prowlarr in remote machine
but reverse proxy it from the local machine over tailscale
This commit is contained in:
@@ -118,13 +118,6 @@
|
||||
users.groups.media = {};
|
||||
|
||||
services = {
|
||||
resolved = {
|
||||
enable = true;
|
||||
dnssec = "true";
|
||||
domains = ["~."];
|
||||
fallbackDns = ["1.1.1.1#one.one.one.one" "1.0.0.1#one.one.one.one"];
|
||||
dnsovertls = "true";
|
||||
};
|
||||
devmon.enable = true;
|
||||
gvfs.enable = true;
|
||||
udisks2.enable = true;
|
||||
|
||||
@@ -9,6 +9,8 @@
|
||||
./mullvad.nix
|
||||
./openrgb.nix
|
||||
./command-runner.nix
|
||||
./resolved.nix
|
||||
# ./dnscrypt.nix
|
||||
];
|
||||
services = {
|
||||
# hardware.openrgb.enable = true;
|
||||
|
||||
30
nixos/ryu/services/dnscrypt.nix
Normal file
30
nixos/ryu/services/dnscrypt.nix
Normal file
@@ -0,0 +1,30 @@
|
||||
{config, ...}: {
|
||||
networking = {
|
||||
search = ["lemur-newton.ts.net"];
|
||||
dhcpcd.extraConfig = "nohook resolv.conf";
|
||||
networkmanager.dns = "none";
|
||||
};
|
||||
services.resolved.enable = false;
|
||||
services.dnscrypt-proxy2 = {
|
||||
enable = true;
|
||||
# Settings reference:
|
||||
# https://github.com/DNSCrypt/dnscrypt-proxy/blob/master/dnscrypt-proxy/example-dnscrypt-proxy.toml
|
||||
settings = {
|
||||
ipv6_servers = true;
|
||||
require_dnssec = true;
|
||||
# Add this to test if dnscrypt-proxy is actually used to resolve DNS requests
|
||||
# query_log.file = "/var/log/dnscrypt-proxy/query.log";
|
||||
sources.public-resolvers = {
|
||||
urls = [
|
||||
"https://raw.githubusercontent.com/DNSCrypt/dnscrypt-resolvers/master/v3/public-resolvers.md"
|
||||
"https://download.dnscrypt.info/resolvers-list/v3/public-resolvers.md"
|
||||
];
|
||||
cache_file = "/var/cache/dnscrypt-proxy/public-resolvers.md";
|
||||
minisign_key = "RWQf6LRCGA9i53mlYecO4IzT51TGPpvWucNSCh1CBM0QTaLn73Y7GFO3";
|
||||
};
|
||||
|
||||
# You can choose a specific set of servers from https://github.com/DNSCrypt/dnscrypt-resolvers/blob/master/v3/public-resolvers.md
|
||||
server_names = ["cloudflare-security"];
|
||||
};
|
||||
};
|
||||
}
|
||||
9
nixos/ryu/services/resolved.nix
Normal file
9
nixos/ryu/services/resolved.nix
Normal file
@@ -0,0 +1,9 @@
|
||||
{...}: {
|
||||
services.resolved = {
|
||||
enable = true;
|
||||
dnssec = "true";
|
||||
domains = ["~." "lemur-newton.ts.net"];
|
||||
fallbackDns = ["1.1.1.1#one.one.one.one" "1.0.0.1#one.one.one.one"];
|
||||
dnsovertls = "true";
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user