diff options
author | tdback <tyler@tdback.net> | 2025-01-17 19:04:47 -0500 |
---|---|---|
committer | tdback <tyler@tdback.net> | 2025-01-17 19:04:47 -0500 |
commit | e788759c9fe6190f2c6f61f8f5f0a01f50aeef1e (patch) | |
tree | 44e7b380290705d56118dbcf2405f7ffd5245887 /modules | |
parent | c9d6180ffffb95842f4e6ce931340c43d26259ea (diff) |
feat: add ssh key to primary user
Diffstat (limited to 'modules')
-rw-r--r-- | modules/users/default.nix | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/users/default.nix b/modules/users/default.nix index 219f577..0d5e297 100644 --- a/modules/users/default.nix +++ b/modules/users/default.nix @@ -15,6 +15,9 @@ ]; shell = pkgs.bash; ignoreShellProgramCheck = true; + openssh.authorizedKeys.keys = [ + "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICSDrYIsIPOpxB2qap2EPAREK1yupGw/GuyWkvo8IcDD" + ]; }; groups.tdback.gid = 1000; }; |