nix/common/configuration/users.nix

11 lines
205 B
Nix
Raw Permalink Normal View History

2023-06-18 23:00:40 +00:00
{ pkgs, ... }:
{
users.users.sijmen = {
isNormalUser = true;
extraGroups = [ "wheel" "docker" "wireshark" "video" "dialout" "libvirt" ];
description = "Sijmen";
shell = pkgs.zsh;
};
}