20 lines
332 B
Nix
20 lines
332 B
Nix
|
|
{ pkgs, ... }:
|
||
|
|
{
|
||
|
|
users.users.ronja = {
|
||
|
|
isNormalUser = true;
|
||
|
|
name = "ronja";
|
||
|
|
description = "Ronja";
|
||
|
|
home = "/home/ronja";
|
||
|
|
extraGroups = [
|
||
|
|
"networkmanager"
|
||
|
|
"wheel"
|
||
|
|
"games"
|
||
|
|
"podman"
|
||
|
|
"openvscode-server"
|
||
|
|
];
|
||
|
|
shell = pkgs.zsh;
|
||
|
|
};
|
||
|
|
|
||
|
|
nix.settings.trusted-users = [ "ronja" ];
|
||
|
|
}
|