mirror of
https://github.com/kaesaecracker/nixos-configuration.git
synced 2025-01-18 18:40:14 +01:00
14 lines
289 B
Nix
14 lines
289 B
Nix
{pkgs, ...}: {
|
|
config = {
|
|
# Define user account
|
|
users.users.ronja = {
|
|
isNormalUser = true;
|
|
name = "ronja";
|
|
description = "Ronja";
|
|
home = "/home/ronja";
|
|
extraGroups = ["networkmanager" "wheel" "games" "podman"];
|
|
shell = pkgs.zsh;
|
|
};
|
|
};
|
|
}
|