added root_ca content

This commit is contained in:
John Lancaster
2026-03-25 18:07:08 -05:00
parent 7b0f419454
commit 2fad88f8a0
+2 -1
View File
@@ -8,8 +8,9 @@ in
home.file.".step/config/defaults.json".text = builtins.toJSON { home.file.".step/config/defaults.json".text = builtins.toJSON {
"ca-url" = "https://janus.john-stream.com/"; "ca-url" = "https://janus.john-stream.com/";
fingerprint = "2036c44f7b5901566ff7611ea6c927291ecc6d2dd00779c0eead70ec77fa10d6"; fingerprint = "2036c44f7b5901566ff7611ea6c927291ecc6d2dd00779c0eead70ec77fa10d6";
root = (builtins.readFile ./root_ca.crt); root = "${config.home.homeDirectory}/.step/certs/root_ca.crt";
}; };
home.file.".step/certs/root_ca.crt".source = ./root_ca.crt;
}; };
flake.nixosConfigurations."${hostname}" = inputs.nixpkgs.lib.nixosSystem { flake.nixosConfigurations."${hostname}" = inputs.nixpkgs.lib.nixosSystem {