add xkcd-pw

This commit is contained in:
stubbfel
2025-06-15 20:49:22 +02:00
parent f08ff9e904
commit e96b7016bf
3 changed files with 13 additions and 1 deletions

View File

@@ -6,7 +6,7 @@ in
{
environment.systemPackages = with pkgs; [
wget curl vim nano zsh fzf tmux git eza progress tldr htop unstable.docker-compose pkgs.php83 steamcmd
wget curl vim nano zsh fzf tmux git eza progress tldr htop unstable.docker-compose pkgs.php83 steamcmd helix
];
imports =

View File

@@ -23,5 +23,6 @@
# ./unciv.nix
# ./hydra.nix
./postgres.nix
./xkcd-password.nix
];
}

View File

@@ -0,0 +1,11 @@
{ config, pkgs, ... }:
{
services.nginx.virtualHosts."xkcd-pw.stubbe.rocks" = {
enableACME = true;
forceSSL = true;
locations."/".proxyPass = "http://localhost:8080";
};
}