nixos-configuration/users/ronja.nix

20 lines
331 B
Nix
Raw Normal View History

2024-10-27 12:33:35 +01:00
{ 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-10-27 12:33:35 +01:00
extraGroups = [
"networkmanager"
"wheel"
"games"
"podman"
];
shell = pkgs.zsh;
};
};
2023-09-24 12:39:28 +02:00
}