nixos-configs/home/ronja/default.nix

26 lines
453 B
Nix
Raw Normal View History

2025-03-16 10:43:14 +01:00
{ pkgs, ... }:
2023-09-24 12:39:28 +02:00
{
2025-03-16 10:43:14 +01:00
config = {
# Define user account
users.users.ronja = {
isNormalUser = true;
name = "ronja";
description = "Ronja";
home = "/home/ronja";
extraGroups = [
"networkmanager"
"wheel"
"games"
"podman"
2025-07-14 09:44:13 +02:00
"openvscode-server"
2025-03-16 10:43:14 +01:00
];
shell = pkgs.zsh;
};
2023-09-24 12:39:28 +02:00
2025-03-16 10:43:14 +01:00
home-manager.users.ronja.imports = [
./configuration.nix
./vscode.nix
];
2023-09-24 12:39:28 +02:00
};
}