ookiiBoy

joined 2 months ago
[–] [email protected] 1 points 9 hours ago

It's true. I'm terrified of reading this thread right now.

[–] [email protected] 7 points 9 hours ago (1 children)

a hyper realistic Viking epic with a full Nordic cast, but they all talk like surfer bros

Jarl! My dude! We totally viking'd the shit out of that Irish monastery! It was fucking rad!

[–] [email protected] 4 points 1 week ago

... Is another reason that the logo has orange in it?

[–] [email protected] 3 points 1 week ago

Here's how I do it. Tear the container, start biting.

[–] [email protected] 35 points 1 week ago (2 children)

Glad you had a good time. I understand. :(

[–] [email protected] 6 points 2 weeks ago

I weirdly dislike most of these things. Nature calls was fine.

Still glad people found joy in his work though. Obviously talented.

[–] [email protected] 1 points 2 weeks ago

Yeah. Fuck blink.

[–] [email protected] 1 points 2 weeks ago

I guess so. :(

[–] [email protected] 5 points 2 weeks ago

I love the fact that the car will continue to degrade, but the head will remain.

[–] [email protected] 2 points 2 weeks ago

Most of the time you don't need docker. NixOS isolates runtimes.

That being said, you could use nix to build the docker container, and then run it using the built-in oci-container options.

[–] [email protected] 4 points 2 weeks ago (1 children)

It could be you! (L)

[–] [email protected] 2 points 2 weeks ago* (last edited 2 weeks ago) (3 children)

How do you host your DNS sinkhole/resolver?

Like this, baby:

services.adguardhome = {
      enable = true;
      mutableSettings = false;
      openFirewall = true;
      settings = {
        dns = {
          # Web Interface
          bootstrap_dns = ["9.9.9.9" "149.112.112.112"];
          upstream_dns = ["https://dns.quad9.net/dns-query"];
          fallback_dns = ["tls://dns.quad9.net"];
        };
        filters = [
          {
            name = "AdGuard DNS filter";
            url = "https://adguardteam.github.io/HostlistsRegistry/assets/filter_1.txt";
            enabled = true;
          }
        ];
        filtering = {
          blocked_services = {
            ids = [
            ];
          };
          protection_enabled = true;
          filtering_enabled = true;
          rewrites = [
          ];
        };

Deploy to the main home server, and the backup instance. NixOS is fucking awesome. No sync tool needed.

view more: next ›