Compare commits

..

No commits in common. "68513075f7a7bd8c0cc809e192511964bd7c7b4f" and "e8b036a4e7c0761dced12f56b353981faa498c95" have entirely different histories.

6 changed files with 15 additions and 33 deletions

View file

@ -1,5 +1,6 @@
_: { _: {
networking = { networking = {
firewall.allowedTCPPorts = [ 42069 ];
nftables = { nftables = {
enable = true; enable = true;
ruleset = '' ruleset = ''

View file

@ -53,14 +53,14 @@ in
cache = "1m"; cache = "1m";
title = "Services"; title = "Services";
sites = [ sites = [
{ title = "Jellyfin"; url = "https://jellyfin.labs.adtya.xyz/"; icon = "si:jellyfin"; same-tab = true; } { title = "Jellyfin"; url = "https://jellyfin.labs.adtya.xyz/"; icon = "si:jellyfin"; }
{ title = "Forgejo"; url = "https://git.ironyofprivacy.org/"; icon = "si:forgejo"; same-tab = true; } { title = "Forgejo"; url = "https://forge.acomputer.lol/"; icon = "si:forgejo"; }
{ title = "Transmission"; url = "https://transmission.labs.adtya.xyz/"; icon = "si:transmission"; } { title = "Transmission"; url = "https://transmission.labs.adtya.xyz/"; icon = "si:transmission"; }
{ title = "Prowlarr"; url = "https://prowlarr.labs.adtya.xyz/"; icon = "si:prowlarr"; } { title = "Prowlarr"; url = "https://prowlarr.labs.adtya.xyz/"; icon = "si:prowlarr"; }
{ title = "Bazarr"; url = "https://bazarr.labs.adtya.xyz/"; icon = "si:bazarr"; same-tab = true; } { title = "Bazarr"; url = "https://bazarr.labs.adtya.xyz/"; icon = "si:bazarr"; }
{ title = "Radarr"; url = "https://radarr.labs.adtya.xyz/"; icon = "si:radarr"; same-tab = true; } { title = "Radarr"; url = "https://radarr.labs.adtya.xyz/"; icon = "si:radarr"; }
{ title = "Sonarr"; url = "https://sonarr.labs.adtya.xyz/"; icon = "si:sonarr"; same-tab = true; } { title = "Sonarr"; url = "https://sonarr.labs.adtya.xyz/"; icon = "si:sonarr"; }
{ title = "Lidarr"; url = "https://lidarr.labs.adtya.xyz/"; icon = "si:lidarr"; same-tab = true; } { title = "Lidarr"; url = "https://lidarr.labs.adtya.xyz/"; icon = "si:lidarr"; }
]; ];
} }
@ -70,19 +70,19 @@ in
{ {
title = "Homelab"; title = "Homelab";
links = [ links = [
{ title = "Grafana"; url = "https://grafana.labs.adtya.xyz/"; icon = "si:grafana"; same-tab = true; } { title = "Grafana"; url = "https://grafana.labs.adtya.xyz/"; }
{ title = "Prometheus"; url = "https://prometheus.labs.adtya.xyz/"; icon = "si:prometheus"; same-tab = true; } { title = "Prometheus"; url = "https://prometheus.labs.adtya.xyz/"; }
{ title = "Alert Manager"; url = "https://alertmanager.labs.adtya.xyz/"; icon = "si:prometheus"; same-tab = true; } { title = "Alert Manager"; url = "https://alertmanager.labs.adtya.xyz/"; }
]; ];
} }
{ {
title = "General"; title = "General";
links = [ links = [
{ title = "Email"; url = "https://app.fastmail.com/mail/Inbox/"; icon = "si:fastmail"; same-tab = true; } { title = "Email"; url = "https://app.fastmail.com/mail/Inbox/"; }
{ title = "GitHub Notifications"; url = "https://github.com/notifications"; icon = "si:github"; same-tab = true; } { title = "GitHub Notifications"; url = "https://github.com/notifications"; }
{ title = "Nixpkgs PR Tracker"; url = "https://nixpk.gs/pr-tracker.html"; icon = "si:nixos"; same-tab = true; } { title = "Nixpkgs PR Tracker"; url = "https://nixpk.gs/pr-tracker.html"; }
{ title = "DigitalOcean"; url = "https://cloud.digitalocean.com"; icon = "si:digitalocean"; same-tab = true; } { title = "DigitalOcean"; url = "https://cloud.digitalocean.com"; }
{ title = "Hetzner DNS Console"; url = "https://www.hetzner.com/dns-console/"; icon = "si:hetzner"; same-tab = true; } { title = "Hetzner DNS Console"; url = "https://www.hetzner.com/dns-console/"; }
]; ];
} }
]; ];

View file

@ -22,6 +22,5 @@
}; };
systemd.services.caddy.serviceConfig.EnvironmentFile = config.sops.secrets."caddy/env_file".path; systemd.services.caddy.serviceConfig.EnvironmentFile = config.sops.secrets."caddy/env_file".path;
networking.firewall.allowedTCPPorts = [ 80 443 ]; networking.firewall.allowedTCPPorts = [ 80 443 ];
networking.firewall.allowedUDPPorts = [ 80 443 ];
} }

View file

@ -2,7 +2,6 @@
imports = [ imports = [
./btrfs.nix ./btrfs.nix
./dbus.nix ./dbus.nix
./geoclue.nix
./keyd.nix ./keyd.nix
./pipewire.nix ./pipewire.nix
./udev.nix ./udev.nix

View file

@ -1,13 +0,0 @@
_: {
location.provider = "geoclue2";
services.geoclue2 = {
enable = true;
enable3G = false;
enableCDMA = false;
enableNmea = false;
enableWifi = true;
enableModemGPS = false;
enableDemoAgent = false;
geoProviderUrl = "https://beacondb.net/v1/geolocate";
};
}

View file

@ -59,10 +59,6 @@ in
HTTP_PORT = 3000; HTTP_PORT = 3000;
DOMAIN = domainName; DOMAIN = domainName;
}; };
log = {
LEVEL = "Warn";
"logger.router.MODE" = "";
};
session = { session = {
COOKIE_SECURE = true; COOKIE_SECURE = true;
}; };