Fix: Stop making fun of me.

This commit is contained in:
Joey Hafner 2025-02-05 23:25:25 -08:00
parent 46ee5c8b5c
commit 4aaf1d33bd
Signed by: Jafner
GPG Key ID: 6D9A24EF2F389E55
2 changed files with 2 additions and 3 deletions

View File

@ -244,8 +244,7 @@
ip = "192.168.1.23";
};
ssh = {
path = ".ssh";
privateKey = "admin@fighter";
privateKey = ".ssh/admin@fighter";
};
dataDirs = {
appdata = "/appdata";

View File

@ -1,7 +1,7 @@
{ sys, pkgs, inputs, flake, ... }: {
imports = [ inputs.sops-nix.nixosModules.sops ];
sops = {
age.sshKeyPaths = [ "/home/${sys.username}/${sys.ssh.path}/${sys.ssh.privateKey}" ];
age.sshKeyPaths = [ "/home/${sys.username}/${sys.ssh.privateKey}" ];
age.generateKey = false;
};