dotfiles/nixos/.flake/system/users.nix.org
2024-09-28 00:01:09 -05:00

359 B

User Configuration

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

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

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