Compare commits
No commits in common. "478af697926b9ad49fb2113f6b019fdfcfea380a" and "aa766b7adc0dd65423799fdae04fe55ae318d40c" have entirely different histories.
478af69792
...
aa766b7adc
7 changed files with 13 additions and 37 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -11,4 +11,3 @@ dkim_private.pem
|
||||||
|
|
||||||
install.log
|
install.log
|
||||||
.direnv
|
.direnv
|
||||||
.agents
|
|
||||||
|
|
@ -10,7 +10,6 @@
|
||||||
./modules/matrix.nix
|
./modules/matrix.nix
|
||||||
./modules/monitoring.nix
|
./modules/monitoring.nix
|
||||||
./modules/ntfy.nix
|
./modules/ntfy.nix
|
||||||
./modules/uptime-kuma.nix
|
|
||||||
./secrets/secrets-scheme.nix
|
./secrets/secrets-scheme.nix
|
||||||
# Impure Secrets
|
# Impure Secrets
|
||||||
./secrets/secrets.nix
|
./secrets/secrets.nix
|
||||||
|
|
|
||||||
6
flake.lock
generated
6
flake.lock
generated
|
|
@ -22,11 +22,11 @@
|
||||||
},
|
},
|
||||||
"nixpkgs": {
|
"nixpkgs": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1772198003,
|
"lastModified": 1771848320,
|
||||||
"narHash": "sha256-I45esRSssFtJ8p/gLHUZ1OUaaTaVLluNkABkk6arQwE=",
|
"narHash": "sha256-0MAd+0mun3K/Ns8JATeHT1sX28faLII5hVLq0L3BdZU=",
|
||||||
"owner": "nixos",
|
"owner": "nixos",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "dd9b079222d43e1943b6ebd802f04fd959dc8e61",
|
"rev": "2fc6539b481e1d2569f25f8799236694180c0993",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|
|
||||||
|
|
@ -24,14 +24,8 @@
|
||||||
|
|
||||||
devShells.x86_64-linux.default = let
|
devShells.x86_64-linux.default = let
|
||||||
pkgs = nixpkgs.legacyPackages.x86_64-linux;
|
pkgs = nixpkgs.legacyPackages.x86_64-linux;
|
||||||
deploy = pkgs.writeShellScriptBin "nhs" ''
|
|
||||||
nh os switch --hostname extremist-software --target-host root@extremist-software --impure path:. "$@"
|
|
||||||
'';
|
|
||||||
in pkgs.mkShell {
|
in pkgs.mkShell {
|
||||||
packages = [
|
packages = [ pkgs.nh ];
|
||||||
pkgs.nh
|
|
||||||
deploy
|
|
||||||
];
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -63,12 +63,6 @@
|
||||||
reverse_proxy localhost:3001 # Grafana
|
reverse_proxy localhost:3001 # Grafana
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
"uptime.extremist.software" = {
|
|
||||||
extraConfig = ''
|
|
||||||
reverse_proxy localhost:4001
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
|
|
||||||
"ntfy.extremist.software" = {
|
"ntfy.extremist.software" = {
|
||||||
extraConfig = ''
|
extraConfig = ''
|
||||||
|
|
|
||||||
|
|
@ -14,16 +14,17 @@
|
||||||
search = {
|
search = {
|
||||||
request_timeout = 1.5;
|
request_timeout = 1.5;
|
||||||
};
|
};
|
||||||
ui = {
|
use_default_settings = {
|
||||||
categories_as_tabs = [ "general" "images" ];
|
engines = {
|
||||||
|
keep_only = [
|
||||||
|
"google"
|
||||||
|
"wikipedia"
|
||||||
|
];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
engines = [
|
engines = [
|
||||||
{ name = "google"; engine = "google"; categories = "general"; disabled = false; }
|
{ name = "google"; engine = "google"; disabled = false; }
|
||||||
{ name = "wikipedia"; engine = "wikipedia"; categories = "general"; disabled = false; }
|
{ name = "wikipedia"; engine = "wikipedia"; disabled = false; }
|
||||||
{ name = "google images"; engine = "google_images"; categories = "images"; disabled = false; }
|
|
||||||
{ name = "duckduckgo images"; engine = "duckduckgo_images"; categories = "images"; disabled = false; }
|
|
||||||
{ name = "bing images"; engine = "bing_images"; categories = "images"; disabled = false; }
|
|
||||||
{ name = "qwant images"; engine = "qwant_images"; categories = "images"; disabled = false; }
|
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -1,11 +0,0 @@
|
||||||
{ config, pkgs, ... }:
|
|
||||||
|
|
||||||
{
|
|
||||||
services.uptime-kuma = {
|
|
||||||
enable = true;
|
|
||||||
settings = {
|
|
||||||
PORT = "4001";
|
|
||||||
HOST = "127.0.0.1";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue