From 102b2598324002c7810d648638decf05e1ef8f6d Mon Sep 17 00:00:00 2001 From: KoenDR06 Date: Wed, 1 Oct 2025 12:30:21 +0200 Subject: [PATCH] move ssh files --- modules/base/secrets.nix | 4 ++-- secrets.nix | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/base/secrets.nix b/modules/base/secrets.nix index 74dd64c..6699d79 100644 --- a/modules/base/secrets.nix +++ b/modules/base/secrets.nix @@ -25,13 +25,13 @@ in { file = secretFile "ssh/id_personal.pub.age"; owner = username; group = "users"; - path = "/home/horseman/.ssh/id_personal.pub"; + path = "/home/horseman/.ssh/id_ed25519.pub"; }; personalSSH = { file = secretFile "ssh/id_personal.age"; owner = username; group = "users"; - path = "/home/horseman/.ssh/id_personal"; + path = "/home/horseman/.ssh/id_ed25519"; }; githubSSHpub = { file = secretFile "ssh/id_github.pub.age"; diff --git a/secrets.nix b/secrets.nix index 43ae7ca..af80d65 100644 --- a/secrets.nix +++ b/secrets.nix @@ -4,9 +4,9 @@ let luna = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFu+XwTX1vF8Xqlna99Tu50TBT0cmOatb2LLwnC/33DU root@luna"; solis = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDKepQ6sJahN0VQTMowIiga2WZBCaNBTadca+OxCV6T6 root@solis"; terra = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIN6Mog8ujGXnEZ3lXm4zrYclh/0xx4LhZV2U5zqqxALE root@terra"; - + systems = [luna solis terra]; - + all = [horseman] ++ systems; in { "secrets/wifi.age".publicKeys = all;