Compare commits

...

2 commits

2 changed files with 16 additions and 9 deletions

View file

@ -1,21 +1,28 @@
{ ... }: { { pkgs, ... }:
let
pages = pkgs.fetchFromGitea {
domain = "git.fainsin.bzh";
owner = "Laurent";
repo = "personal-website";
rev = "pages";
sha256 = "sha256-ahx9YSKyImQDu7k6/hbgYQdAnw5yInXQ/n14CLWTVkc=";
};
in {
services.nginx.virtualHosts = { services.nginx.virtualHosts = {
"laurent.fainsin.bzh" = {
enableACME = true;
forceSSL = true;
root = "${pages}";
};
"fainsin.bzh" = { "fainsin.bzh" = {
enableACME = true; enableACME = true;
forceSSL = true; forceSSL = true;
locations."/".return = locations."/".return =
''301 "$scheme://laurent.fainsin.bzh$request_uri"''; ''301 "$scheme://laurent.fainsin.bzh$request_uri"'';
}; };
"laurent.fainsin.bzh" = {
enableACME = true;
forceSSL = true;
root = "/srv/www/";
};
default = { default = {
default = true; default = true;
locations."/".return = ''301 "$scheme://fainsin.bzh" ''; locations."/".return = ''301 "$scheme://fainsin.bzh" '';
}; };
}; };
} }

View file

@ -1,5 +1,5 @@
{ hyprland, ... }: { { hyprland, ... }: {
config.home.stateVersion = "22.11"; config.home.stateVersion = "23.05";
imports = [ imports = [
hyprland.homeManagerModules.default hyprland.homeManagerModules.default