18 lines
305 B
Nix
18 lines
305 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
users.groups.jashton = {};
|
|
users.users.jashton = {
|
|
isNormalUser = true;
|
|
description = "Josh Ashton";
|
|
group = "jashton";
|
|
extraGroups = [ "networkmanager" "wheel" "tss" "video" ];
|
|
|
|
shell = pkgs.zsh;
|
|
};
|
|
|
|
users.users.root = {
|
|
shell = pkgs.zsh;
|
|
};
|
|
}
|