From d769f177b2e10f7090cac8f38bb15d1cb2d30073 Mon Sep 17 00:00:00 2001 From: Alexander Kobjolke Date: Wed, 31 Jan 2024 16:13:37 +0100 Subject: [PATCH] thrall: Add user description --- hosts/thrall/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/hosts/thrall/default.nix b/hosts/thrall/default.nix index ebc6176..551b066 100644 --- a/hosts/thrall/default.nix +++ b/hosts/thrall/default.nix @@ -131,6 +131,7 @@ in { # Define a user account. Don't forget to set a password with ‘passwd’. users.users.alex = { + description = "Alexander Kobjolke"; isNormalUser = true; extraGroups = [ "wheel" ]; # Enable ‘sudo’ for the user. shell = pkgs.zsh;