vps-arm-2024-11-24-22-26-57
This commit is contained in:
@ -26,6 +26,7 @@ in {
|
|||||||
../../configs/docker.nix
|
../../configs/docker.nix
|
||||||
../../configs/user.nix
|
../../configs/user.nix
|
||||||
|
|
||||||
|
../../services/atuin.nix
|
||||||
../../services/adguardhome.nix
|
../../services/adguardhome.nix
|
||||||
../../services/frigate.nix
|
../../services/frigate.nix
|
||||||
../../services/gitea.nix
|
../../services/gitea.nix
|
||||||
@ -241,6 +242,7 @@ in {
|
|||||||
|
|
||||||
services = {
|
services = {
|
||||||
dnscrypt-proxy2.enable = lib.mkForce false;
|
dnscrypt-proxy2.enable = lib.mkForce false;
|
||||||
|
qemuGuest.enable = true;
|
||||||
|
|
||||||
nginx = {
|
nginx = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
25
services/atuin.nix
Normal file
25
services/atuin.nix
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
{
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
|
services = {
|
||||||
|
nginx = {
|
||||||
|
virtualHosts = {
|
||||||
|
"atuin.szczepan.ski" = {
|
||||||
|
forceSSL = true;
|
||||||
|
enableACME = true;
|
||||||
|
locations = {
|
||||||
|
"/" = {proxyPass = "http://127.0.0.1:8888/";};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
atuin = {
|
||||||
|
enable = true;
|
||||||
|
openRegistration = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Reference in New Issue
Block a user