Files
nix-config/systems/modules/users.nix
2026-06-29 09:56:47 +02:00

22 lines
360 B
Nix

{ config, pkgs, ... }:
{
users.users.avravels = {
initialPassword = "welcome";
isNormalUser = true;
description = "Armel van Ravels";
extraGroups = [
"networkmanager"
"wheel"
"libvirtd"
"dialout"
];
packages = with pkgs; [
home-manager
spotify
proton-vpn
];
shell = pkgs.zsh;
};
}