Compare commits

..

No commits in common. "e74505a986b428921772ba550f4378c1f5f46b21" and "e8f897d76c821548e889823d0431d831f76f187a" have entirely different histories.

2 changed files with 9 additions and 16 deletions

View file

@ -1,28 +1,21 @@
{ 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 = {
"laurent.fainsin.bzh" = {
enableACME = true;
forceSSL = true;
root = "${pages}";
};
"fainsin.bzh" = {
enableACME = true;
forceSSL = true;
locations."/".return =
''301 "$scheme://laurent.fainsin.bzh$request_uri"'';
};
"laurent.fainsin.bzh" = {
enableACME = true;
forceSSL = true;
root = "/srv/www/";
};
default = {
default = true;
locations."/".return = ''301 "$scheme://fainsin.bzh" '';
};
};
}

View file

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