#+title: User Configuration Set up my user account with =zsh= as default shell with =sudoers= and network management permissions. #+begin_src nix :tangle ~/.flake/system/users.nix :mkdirp yes { config, lib, pkgs, ... }: { users.users.jane = { shell = pkgs.zsh; isNormalUser = true; extraGroups = [ "networkmanager" "wheel" ]; }; } #+end_src