From 74a19ed164d2d85ea4de8384df9c9775c8643f06 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tristan=20Dani=C3=ABl=20Maat?= Date: Mon, 13 Jul 2020 21:44:33 +0100 Subject: [PATCH] Make tlater part of the wheel group again Trying to go sudo-less immediately was probably a bit too ambitious. Once we have a working continuous deployment setup this may be applied again. --- 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 9feed08..fcf203d 100644 --- a/etc/nixos/configuration.nix +++ b/etc/nixos/configuration.nix @@ -41,7 +41,7 @@ users.users = { tlater = { isNormalUser = true; - extraGroups = [ "docker" ]; + extraGroups = [ "wheel" "docker" ]; openssh.authorizedKeys.keyFiles = [ ./keys/tlater.pub ]; }; };