fix bug in internal relative paths
This commit is contained in:
parent
468c95c7a1
commit
9b3cc59d74
|
@ -57,7 +57,7 @@ with lib;
|
|||
group = "fabian";
|
||||
shell = pkgs.zsh;
|
||||
extraGroups = [ "users" "wheel" "networkmanager" "dialout" "libvirtd" ];
|
||||
openssh.authorizedKeys.keyFiles = [ "${flakes.self}/pki/fabian.pub" ];
|
||||
openssh.authorizedKeys.keyFiles = [ ../pki/fabian.pub ];
|
||||
};
|
||||
groups.fabian.gid = 1000;
|
||||
};
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ lib, pkgs, flakes, ... }:
|
||||
{ lib, pkgs, ... }:
|
||||
with lib;
|
||||
{
|
||||
|
||||
|
@ -14,7 +14,7 @@ with lib;
|
|||
|
||||
ssl_verify_depth 1;
|
||||
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") {
|
||||
return 403;
|
||||
}
|
||||
|
|
Reference in a new issue