blob: 498857a4fcd2cdd70bbf2a353f4966a9f1a93c09 (
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 :tangle ~/.flake/system/users.nix :mkdirp yes
{ config, lib, pkgs, ... }:
{
users.users.jane = {
shell = pkgs.zsh;
isNormalUser = true;
extraGroups = [ "networkmanager" "wheel" ];
};
}
#+end_src
|