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