summaryrefslogtreecommitdiff
path: root/hosts/ahmed/ssh.nix
diff options
context:
space:
mode:
authorLinnnus <[email protected]>2023-09-07 16:53:41 +0200
committerLinnnus <[email protected]>2023-09-07 16:53:41 +0200
commitedcc3acea595d3045253c3c2fe2462599c1c54e0 (patch)
tree81e17fc5fe4f0a52d30e8d0209c6080cc77eda32 /hosts/ahmed/ssh.nix
parentd31d1bae8c38e145cdbafe105401d9528b416779 (diff)
Reorganize everything
Diffstat (limited to 'hosts/ahmed/ssh.nix')
-rw-r--r--hosts/ahmed/ssh.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/hosts/ahmed/ssh.nix b/hosts/ahmed/ssh.nix
index 9e34d99..f737437 100644
--- a/hosts/ahmed/ssh.nix
+++ b/hosts/ahmed/ssh.nix
@@ -1,6 +1,6 @@
# This file configures openSSH on this host.
-{ config, pkgs, lib, misc, ... }:
+{ lib, metadata, ... }:
{
# Who is allowed/expected to connect to this machine?
@@ -13,7 +13,7 @@
users.users = lib.genAttrs ["root" "linus"] (_: {
openssh.authorizedKeys.keys =
[
- misc.metadata.hosts.muhammed.sshPubKey
+ metadata.hosts.muhammed.sshPubKey
];
});
}