2024-10-27 12:33:35 +01:00
|
|
|
{ pkgs, ... }:
|
|
|
|
{
|
2024-10-26 00:04:27 +02:00
|
|
|
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-10-27 12:33:35 +01:00
|
|
|
extraGroups = [
|
|
|
|
"networkmanager"
|
|
|
|
"wheel"
|
|
|
|
"games"
|
|
|
|
"podman"
|
|
|
|
];
|
2023-09-24 13:12:09 +02:00
|
|
|
shell = pkgs.zsh;
|
|
|
|
};
|
2025-01-02 02:05:36 +01:00
|
|
|
|
|
|
|
allowedUnfreePackages = [
|
|
|
|
"vscode-extension-ms-vscode-remote-remote-ssh"
|
|
|
|
];
|
2023-09-24 13:12:09 +02:00
|
|
|
};
|
2023-09-24 12:39:28 +02:00
|
|
|
}
|