From cfee748967e6ea231b364e2a1e98f07fa0660e34 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tristan=20Dani=C3=ABl=20Maat?= Date: Sun, 12 Jul 2020 18:38:42 +0100 Subject: [PATCH] Remove tlater from the wheel group Currently there is no password anyway, so there's no reason to have wheel permissions. --- etc/nixos/configuration.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/nixos/configuration.nix b/etc/nixos/configuration.nix index eed52eb..7bbd048 100644 --- a/etc/nixos/configuration.nix +++ b/etc/nixos/configuration.nix @@ -40,7 +40,7 @@ users.users = { tlater = { isNormalUser = true; - extraGroups = [ "wheel" "docker" ]; + extraGroups = [ "docker" ]; openssh.authorizedKeys.keyFiles = [ ./keys/tlater.pub ]; }; };