mirror of
https://github.com/Ascyii/nixos.git
synced 2026-01-01 14:54:26 -05:00
23 lines
287 B
Nix
23 lines
287 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
users.defaultUserShell = pkgs.zsh;
|
|
users.users = {
|
|
jonas = {
|
|
isNormalUser = true;
|
|
uid = 1000;
|
|
extraGroups = [
|
|
"docker"
|
|
"input"
|
|
"scanner"
|
|
"lp"
|
|
"davfs2"
|
|
"wheel"
|
|
"ydotool"
|
|
"audio"
|
|
"networkmanager"
|
|
];
|
|
};
|
|
};
|
|
}
|