18 lines
339 B
Nix
18 lines
339 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
users.users.avravels = {
|
|
initialPassword = "welcome";
|
|
isNormalUser = true;
|
|
description = "Armel van Ravels";
|
|
extraGroups = [ "networkmanager" "wheel" "libvirtd" ];
|
|
packages = with pkgs; [
|
|
home-manager
|
|
legcord
|
|
spotify
|
|
protonvpn-gui
|
|
];
|
|
shell = pkgs.zsh;
|
|
};
|
|
}
|