From e3147858c36e259a310ea3e03b6c4226b669251e Mon Sep 17 00:00:00 2001 From: prescientmoon Date: Tue, 27 Aug 2024 23:15:18 +0200 Subject: [PATCH] Fix ssh persmissions (take 2) --- home/features/cli/ssh.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/home/features/cli/ssh.nix b/home/features/cli/ssh.nix index 2b86376..163fb14 100644 --- a/home/features/cli/ssh.nix +++ b/home/features/cli/ssh.nix @@ -8,8 +8,8 @@ ssh = "${config.satellite.persistence.at.state.home}/ssh/.ssh"; in [ - "d ${ssh}/ssh/.ssh ${config.home.username} users 0755" - "e ${ssh}/ssh/.ssh/id_rsa ${config.home.username} users 0700" - "e ${ssh}/id_ed25519 ${config.home.username} users 0700" + "d ${ssh} 0755 ${config.home.username} users" + "e ${ssh}/id_rsa 0700 ${config.home.username} users" + "e ${ssh}/id_ed25519 0700 ${config.home.username} users" ]; }