nixos-configuration/users/ronja.nix

24 lines
422 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;
};
2025-01-02 02:05:36 +01:00
allowedUnfreePackages = [
"vscode-extension-ms-vscode-remote-remote-ssh"
];
};
2023-09-24 12:39:28 +02:00
}