nixos-configuration/users/ronja.nix

14 lines
289 B
Nix
Raw Normal View History

{pkgs, ...}: {
config = {
# Define user account
users.users.ronja = {
isNormalUser = true;
name = "ronja";
2024-05-25 11:24:00 +02:00
description = "Ronja";
home = "/home/ronja";
2024-02-09 18:52:20 +01:00
extraGroups = ["networkmanager" "wheel" "games" "podman"];
shell = pkgs.zsh;
};
};
2023-09-24 12:39:28 +02:00
}