Files
homelab/modules/additionalUsers/aariz.nix
T
2026-07-06 02:13:07 +00:00

10 lines
176 B
Nix

{ pkgs, ... }:
{
users.users.aariz = {
isNormalUser = true;
description = "Aariz Khokhar";
packages = with pkgs; [ google-chrome ];
shell = pkgs.bash;
};
}