isadle, fix steam, etc

This commit is contained in:
Jana Dönszelmann 2026-04-05 20:01:25 +02:00
parent a422110adf
commit 4d58ae60b0
No known key found for this signature in database
12 changed files with 253 additions and 151 deletions

View file

@ -8,5 +8,6 @@ _: {
./compiler-construction-2021.nix
./mapfm-poster.nix
./money-is-fckn-gay.nix
./isadle.nix
];
}

View file

@ -0,0 +1,17 @@
{ pkgs, flakes, ... }:
{
services.nginx = {
virtualHosts."isadle.donsz.nl" = {
forceSSL = true;
http2 = true;
enableACME = true;
locations."/" = {
root = flakes.isadle.packages.${pkgs.system}.isadle;
extraConfig = ''
autoindex on;
'';
};
};
};
}