dotfiles/nixos/flake/system/users.nix.org
2025-03-05 22:17:31 -06:00

316 B

User Configuration

Set up my user account with zsh as default shell with sudoers and network management permissions.

{ config, lib, pkgs, ... }:

{
  users.users.jjanzen = {
    shell = pkgs.zsh;
    isNormalUser = true;
    extraGroups = [ "networkmanager" "wheel" ];
  };
}