dotfiles/nixos/.flake/system/users.nix.org
2024-10-02 10:02:02 -05:00

14 lines
316 B
Org Mode

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