Files
.dotfiles/system/security/users.nix
T
2026-07-22 23:02:49 -06:00

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;
};
}