From 9136cff4bff9f098a261e17bd3bbfe8bf68114ed Mon Sep 17 00:00:00 2001 From: Daniel Olsen Date: Sat, 2 Apr 2022 01:52:13 +0200 Subject: [PATCH] Add danio to drift --- base.nix | 2 ++ users/danio.nix | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/base.nix b/base.nix index 96770ab..515c387 100644 --- a/base.nix +++ b/base.nix @@ -29,6 +29,8 @@ kitty.terminfo ]; + users.groups."drift".name = "drift"; + services.openssh.enable = true; services.openssh.permitRootLogin = "yes"; diff --git a/users/danio.nix b/users/danio.nix index 93b41ca..1ce1e53 100644 --- a/users/danio.nix +++ b/users/danio.nix @@ -3,7 +3,7 @@ { users.users.danio = { isNormalUser = true; - #extraGroups = [ "wheel" ]; # Enable ‘sudo’ for the user. + extraGroups = [ "drift" ]; # Enable ‘sudo’ for the user. shell = pkgs.zsh; }; }