11 lines
205 B
Nix
11 lines
205 B
Nix
|
{ pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
users.users.sijmen = {
|
||
|
isNormalUser = true;
|
||
|
extraGroups = [ "wheel" "docker" "wireshark" "video" "dialout" "libvirt" ];
|
||
|
description = "Sijmen";
|
||
|
shell = pkgs.zsh;
|
||
|
};
|
||
|
}
|