fix bug in internal relative paths

This commit is contained in:
Fabian Montero 2024-08-24 01:34:42 -06:00
parent 468c95c7a1
commit 9b3cc59d74
Signed by untrusted user: fabian
GPG key ID: 1FFAC35E1798174F
2 changed files with 3 additions and 3 deletions

View file

@ -57,7 +57,7 @@ with lib;
group = "fabian"; group = "fabian";
shell = pkgs.zsh; shell = pkgs.zsh;
extraGroups = [ "users" "wheel" "networkmanager" "dialout" "libvirtd" ]; extraGroups = [ "users" "wheel" "networkmanager" "dialout" "libvirtd" ];
openssh.authorizedKeys.keyFiles = [ "${flakes.self}/pki/fabian.pub" ]; openssh.authorizedKeys.keyFiles = [ ../pki/fabian.pub ];
}; };
groups.fabian.gid = 1000; groups.fabian.gid = 1000;
}; };

View file

@ -1,4 +1,4 @@
{ lib, pkgs, flakes, ... }: { lib, pkgs, ... }:
with lib; with lib;
{ {
@ -14,7 +14,7 @@ with lib;
ssl_verify_depth 1; ssl_verify_depth 1;
ssl_verify_client on; ssl_verify_client on;
ssl_client_certificate ${flakes.self}/pki/gatekeeper_ca.pem; ssl_client_certificate ${../../pki/gatekeeper_ca.pem};
if ($ssl_client_verify != "SUCCESS") { if ($ssl_client_verify != "SUCCESS") {
return 403; return 403;
} }