users: add user alex

This commit is contained in:
Nico 2025-06-08 21:37:50 +10:00
parent 182e5fb3c4
commit 1ae99e7b2c
2 changed files with 11 additions and 0 deletions

10
modules/users/alex.nix Normal file
View file

@ -0,0 +1,10 @@
{ config, lib, pkgs, ...}:
{
users.users.alex = {
description = "Alexander";
isNormalUser = true;
extraGroups = [ ];
shell = pkgs.zsh;
};
}