From 219c58eea8b2ceaf67a70837bfe06383e8701232 Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Tue, 8 Oct 2024 19:22:05 -0700 Subject: new ssh public key for my user --- nix/hosts/nixos/user.nix | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'nix') diff --git a/nix/hosts/nixos/user.nix b/nix/hosts/nixos/user.nix index c8f0f6a..47c2267 100644 --- a/nix/hosts/nixos/user.nix +++ b/nix/hosts/nixos/user.nix @@ -1,19 +1,19 @@ -{ ... }: -{ +{ ... }: { users.users.fcuny = { uid = 1000; isNormalUser = true; - extraGroups = [ - "git" - "wheel" - ]; + extraGroups = [ "git" "wheel" ]; openssh.authorizedKeys.keys = [ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINBkozy+X96u5ciX766bJ/AyQ3xm1tXZTIr5+4PVFZFi" + "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFP4IsfG32WsmXJNcjsmuahhBHFQ6NulngEMaxcvDd/C" ]; }; security.sudo.extraRules = [{ groups = [ "wheel" ]; - commands = [{ command = "ALL"; options = [ "NOPASSWD" ]; }]; + commands = [{ + command = "ALL"; + options = [ "NOPASSWD" ]; + }]; }]; } -- cgit 1.4.1