mv home homeConfigurations

This commit is contained in:
Vinzenz Schroeter 2025-09-15 18:07:38 +02:00
parent f89c75aad2
commit 1bebb5d096
17 changed files with 0 additions and 0 deletions

View file

@ -1,25 +0,0 @@
{ pkgs, ... }:
{
config = {
# Define user account
users.users.ronja = {
isNormalUser = true;
name = "ronja";
description = "Ronja";
home = "/home/ronja";
extraGroups = [
"networkmanager"
"wheel"
"games"
"podman"
"openvscode-server"
];
shell = pkgs.zsh;
};
home-manager.users.ronja.imports = [
./configuration.nix
./vscode.nix
];
};
}