blob: e922d8e42c9c275a22fb27c5a40b69ee6f7bf098 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#+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
|