From b54cb9fceb1629db2ee624f9cc5a1188eaf25a50 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Mon, 8 Apr 2024 07:39:11 +0000 Subject: [PATCH] [NixOS] Make kanivan keys work for syncthing --- nixos/users.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/users.nix b/nixos/users.nix index 57e8c90c..538c747c 100644 --- a/nixos/users.nix +++ b/nixos/users.nix @@ -27,7 +27,7 @@ in extraGroups = [ "syncthing" "wheel" ]; home = "/var/lib/syncthing"; createHome = true; - openssh.authorizedKeys.keys = [giteaSecret]; + openssh.authorizedKeys.keys = [giteaSecret] ++ kanivanKeys; }; ivanm = userDefaults // { extraGroups = extraGroupsWithWheel;