This commit is contained in:
John Lancaster
2026-03-15 21:02:09 -05:00
parent a8a9a73e08
commit ba72aec338
2 changed files with 16 additions and 5 deletions

View File

@@ -2,6 +2,7 @@
let
username = "john";
hostname = "janus";
caURL = "https://janus.john-stream.com/";
in
{
flake.nixosConfigurations."${hostname}" = inputs.nixpkgs.lib.nixosSystem {
@@ -19,12 +20,16 @@ in
networking.hostName = hostname;
step-ssh-host = {
hostname = hostname;
caURL = "https://janus.john-stream.com/";
caURL = caURL;
};
mtls = {
enable = true;
subject = hostname;
caURL = "https://janus.john-stream.com/";
caURL = caURL;
san = [
"${hostname}.john-stream.com"
"192.168.1.244"
];
};
home-manager.users."${username}" = {