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