diff --git a/flake.lock b/flake.lock index a68ad79..3a5733a 100644 --- a/flake.lock +++ b/flake.lock @@ -363,11 +363,11 @@ "treefmt-nix": "treefmt-nix" }, "locked": { - "lastModified": 1780328189, - "narHash": "sha256-UL+7BjYxzUjB74hxjBcs/Ir4SC4vVXTv+QsneLOuCUw=", + "lastModified": 1780253615, + "narHash": "sha256-TjRnDvTAu4ocOmqnBZ/+//eq0bxdFbYl5zZu7j1ONpY=", "ref": "refs/heads/main", - "rev": "26c9c13cf518b19c975c111167c8d87e1f5c270f", - "revCount": 1240, + "rev": "7cc26907173f880fcce0e40635d1ed364ccb5a5f", + "revCount": 1109, "type": "git", "url": "https://forge.darkest.space/hyperhive/hyperhive.git" }, @@ -383,11 +383,11 @@ ] }, "locked": { - "lastModified": 1780265484, - "narHash": "sha256-S8gycwVbWmg3CLDK2ocfGSkBS8UWX6tZFmOjYG2TIEE=", + "lastModified": 1780152618, + "narHash": "sha256-vnx1m2lxIjoJd1e3PJz4XVmScF4maxQ9SMZWQym1mm0=", "ref": "refs/heads/main", - "rev": "e1360b269ac56579ab290e8ecab836538753dfb0", - "revCount": 17, + "rev": "98930caaca4d8bdc5957d6e24aa1438dac122d85", + "revCount": 15, "type": "git", "url": "https://forge.darkest.space/hyperhive/website.git" }, diff --git a/nixosConfigurations/hetzner-vpn2/nginx.nix b/nixosConfigurations/hetzner-vpn2/nginx.nix index 381dde2..7b4033d 100644 --- a/nixosConfigurations/hetzner-vpn2/nginx.nix +++ b/nixosConfigurations/hetzner-vpn2/nginx.nix @@ -1,9 +1,4 @@ -{ - pkgs, - hyperhive, - hyperhive-website, - ... -}: +{ pkgs, hyperhive, hyperhive-website, ... }: let blog-domain-socket = "/run/nginx/blog.sock"; anubis-domain-socket = "/run/anubis/anubis-main/anubis.sock"; @@ -51,7 +46,8 @@ in forceSSL = true; enableACME = true; root = hyperhive-website.packages.${pkgs.stdenv.hostPlatform.system}.default; - locations."/options/".alias = "${hyperhive.packages.${pkgs.stdenv.hostPlatform.system}.docs}/"; + locations."/options/".alias = + "${hyperhive.packages.${pkgs.stdenv.hostPlatform.system}.docs}/"; }; }; }; diff --git a/nixosConfigurations/hyperforge/forgejo.nix b/nixosConfigurations/hyperforge/forgejo.nix index 2fed1b0..e9873e0 100644 --- a/nixosConfigurations/hyperforge/forgejo.nix +++ b/nixosConfigurations/hyperforge/forgejo.nix @@ -34,14 +34,7 @@ in }; service.DISABLE_REGISTRATION = true; session.COOKIE_SECURE = true; - ui.THEMES = lib.concatStringsSep "," ( - [ - "forgejo-auto" - "forgejo-light" - "forgejo-dark" - ] - ++ themeNames - ); + ui.THEMES = lib.concatStringsSep "," ([ "forgejo-auto" "forgejo-light" "forgejo-dark" ] ++ themeNames); ui.DEFAULT_THEME = "catppuccin-mocha-mauve"; }; }; diff --git a/nixosConfigurations/hyperforge/hardware.nix b/nixosConfigurations/hyperforge/hardware.nix index b2eba6e..45ad020 100644 --- a/nixosConfigurations/hyperforge/hardware.nix +++ b/nixosConfigurations/hyperforge/hardware.nix @@ -14,11 +14,7 @@ fileSystems."/var/lib/forgejo" = { device = "/dev/disk/by-uuid/da5efb9a-7dc2-4fa3-aeca-c9bf634054b0"; fsType = "ext4"; - options = [ - "discard" - "nofail" - "defaults" - ]; + options = [ "discard" "nofail" "defaults" ]; }; }; } diff --git a/nixosConfigurations/muede-lpt2/hyperhive.nix b/nixosConfigurations/muede-lpt2/hyperhive.nix index 7857255..c41db13 100644 --- a/nixosConfigurations/muede-lpt2/hyperhive.nix +++ b/nixosConfigurations/muede-lpt2/hyperhive.nix @@ -10,7 +10,6 @@ gui.enable = true; serverName = "pr1ma.darkest.space"; }; - forge.ci.enable = true; gateway.localHostsEntry = true; }; }