aboutsummaryrefslogtreecommitdiff
path: root/nix/hosts/nixos/user.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nix/hosts/nixos/user.nix')
-rw-r--r--nix/hosts/nixos/user.nix12
1 files changed, 7 insertions, 5 deletions
diff --git a/nix/hosts/nixos/user.nix b/nix/hosts/nixos/user.nix
index b358d3e..dbd8057 100644
--- a/nix/hosts/nixos/user.nix
+++ b/nix/hosts/nixos/user.nix
@@ -3,10 +3,12 @@
users.users.fcuny = {
uid = 1000;
isNormalUser = true;
- extraGroups =
- [
- "wheel"
- "dialout" # Enable access to serial devices
- ];
+ extraGroups = [
+ "wheel"
+ "dialout" # Enable access to serial devices
+ ];
+ openssh.authorizedKeys.keys = [
+ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINBkozy+X96u5ciX766bJ/AyQ3xm1tXZTIr5+4PVFZFi"
+ ];
};
}