From 2a40e49f705702f55acc05754e59559226c4818d Mon Sep 17 00:00:00 2001 From: Christoph Schmatzler Date: Tue, 12 Aug 2025 19:10:37 +0000 Subject: [PATCH] up --- modules/platform/nixos/default.nix | 6 +++++- shared/ssh-keys.nix | 5 ----- 2 files changed, 5 insertions(+), 6 deletions(-) delete mode 100644 shared/ssh-keys.nix diff --git a/modules/platform/nixos/default.nix b/modules/platform/nixos/default.nix index 0d26ab4..d6bc449 100644 --- a/modules/platform/nixos/default.nix +++ b/modules/platform/nixos/default.nix @@ -5,7 +5,11 @@ sops-nix, ... }: let - sshKeys = import ../../../shared/ssh-keys.nix; + sshKeys = { + keys = [ + "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILw2lQn2yEwprOzz50kxG4fKXHzq6askh+XSGLSnWidd" + ]; + }; in { imports = [ ../../core diff --git a/shared/ssh-keys.nix b/shared/ssh-keys.nix deleted file mode 100644 index 2013111..0000000 --- a/shared/ssh-keys.nix +++ /dev/null @@ -1,5 +0,0 @@ -{ - keys = [ - "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILw2lQn2yEwprOzz50kxG4fKXHzq6askh+XSGLSnWidd" - ]; -}