From ac0ab13688225fc17246ca0fc86c00c02f04105e Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Sun, 8 Dec 2024 15:50:27 -0800 Subject: move the configuration for hetzner under machines --- nix/hosts/nixos/user.nix | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 nix/hosts/nixos/user.nix (limited to 'nix/hosts/nixos/user.nix') diff --git a/nix/hosts/nixos/user.nix b/nix/hosts/nixos/user.nix deleted file mode 100644 index 47c2267..0000000 --- a/nix/hosts/nixos/user.nix +++ /dev/null @@ -1,19 +0,0 @@ -{ ... }: { - users.users.fcuny = { - uid = 1000; - isNormalUser = true; - 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" ]; - }]; - }]; -} -- cgit 1.4.1