update homepage
Some checks failed
/ lint (push) Successful in 13s
/ build (push) Failing after 3h13m32s

This commit is contained in:
Jana Dönszelmann 2025-10-28 20:14:57 +01:00
parent a60d56425c
commit 0c044cc4ea
No known key found for this signature in database
3 changed files with 22 additions and 9 deletions

View file

@ -1,4 +1,9 @@
{ pkgs, lib, config, ... }:
{
pkgs,
lib,
config,
...
}:
let
jellyfin-config = ''
@ -112,7 +117,9 @@ in
};
systemd.services.jellyfin.environment.LIBVA_DRIVER_NAME = "iHD"; # or i965, see below
environment.sessionVariables = { LIBVA_DRIVER_NAME = "iHD"; }; # ditto
environment.sessionVariables = {
LIBVA_DRIVER_NAME = "iHD";
}; # ditto
hardware.graphics = {
enable = true;
@ -124,7 +131,6 @@ in
];
};
# hardware.graphics = {
# enable = true;
# package = pkgs.intel-media-driver;

View file

@ -7,16 +7,23 @@
enableACME = true;
locations."/" = {
root = "${flakes.homepage.packages.${pkgs.system}.website}/normal";
root = "${flakes.homepage.packages.${pkgs.system}.website}";
};
};
virtualHosts."blog.donsz.nl" = {
forceSSL = true;
http2 = true;
enableACME = true;
locations."/".return = "301 https://donsz.nl/blog";
};
virtualHosts."gay.donsz.nl" = {
forceSSL = true;
http2 = true;
enableACME = true;
locations."/" = {
root = "${flakes.homepage.packages.${pkgs.system}.website}/gay";
root = "${flakes.homepage.packages.${pkgs.system}.website-gay}";
};
};
virtualHosts."jdonszelmann.nl" = {
@ -25,7 +32,7 @@
enableACME = true;
locations."/" = {
root = "${flakes.homepage.packages.${pkgs.system}.website}/normal";
root = "${flakes.homepage.packages.${pkgs.system}.website}";
};
};
};