Compare commits

..

No commits in common. "aeae1e77e6116c047e9036134e6ae6eef397887d" and "9e6e462b79d9379fee1eb5d6e1440fa7e161bc69" have entirely different histories.

8 changed files with 36 additions and 6 deletions

View file

@ -18,7 +18,7 @@
};
fileSystems."/media" = {
device = "192.168.1.199:/mnt/Sutoreji/media";
device = "192.168.1.71:/volume1/media";
fsType = "nfs";
};

View file

@ -0,0 +1,14 @@
_: {
virtualisation.oci-containers.containers.dashdot = {
image = "mauricenino/dashdot:sha-4bef01c";
ports = [
"4000:3001"
];
volumes = [
"/home/notoh/docker/dashdot:/mnt/host:ro"
];
environment = {
DASHDOT_ENABLE_CPU_TEMPS = "true";
};
};
}

View file

@ -4,6 +4,7 @@
./forgejo.nix
./rustypaste.nix
./hedgedoc.nix
./dashdot.nix
./grafana.nix
./vaultwarden.nix
./conduit.nix

View file

@ -47,7 +47,8 @@
port = 8100;
bind_address = "0.0.0.0";
secret_key = "@SEARXNG_SECRET@";
public_instance = false;
base_url = "https://search.flake.sh/";
public_instance = true;
infinite_scroll = true;
};
redis = {

View file

@ -176,6 +176,19 @@
tls.domains = [{main = "*.flake.sh";}];
tls.certresolver = "production";
};
searxng-insecure = {
rule = "Host(`search.flake.sh`)";
entrypoints = ["web"];
service = "searxng";
middlewares = "redirect-to-https";
};
searxng = {
rule = "Host(`search.flake.sh`)";
entrypoints = ["websecure"];
service = "searxng";
tls.domains = [{main = "*.flake.sh";}];
tls.certresolver = "production";
};
neko-insecure = {
rule = "Host(`neko.flake.sh`)";
entrypoints = ["web"];

View file

@ -1,4 +1,5 @@
_: {
networking.firewall.allowedTCPPorts = [4000];
services.uptime-kuma = {
enable = true;
settings = {

View file

@ -34,7 +34,7 @@
};
fileSystems."/nas" = {
device = "192.168.1.199:/mnt/Sutoreji/tsuki";
device = "192.168.1.71:/volume1/tsuki";
fsType = "nfs";
};

View file

@ -24,17 +24,17 @@
};
fileSystems."/nas" = {
device = "192.168.1.199:/mnt/Sutoreji/yuki";
device = "192.168.1.71:/volume1/yuki";
fsType = "nfs";
};
fileSystems."/home/notoh/docker/stash/data" = {
device = "192.168.1.199:/mnt/Sutoreji/stash";
device = "192.168.1.71:/volume1/stash";
fsType = "nfs";
};
fileSystems."/media" = {
device = "192.168.1.199:/mnt/Sutoreji/media";
device = "192.168.1.71:/volume1/media";
fsType = "nfs";
};