26 lines
556 B
Nix
26 lines
556 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
users.users.wesley = {
|
|
isNormalUser = true;
|
|
description = "Wesley Irvin";
|
|
extraGroups = [ "networkmanager" "wheel" ];
|
|
shell = pkgs.zsh; # Set our default shell for our user to zsh
|
|
hashedPassword = "$y$j9T$PXPH.OUWrqDkhAQR03weh/$Ge5dooWNGvExpXtA2Wtqe01e6CIyVvrMZiKZM6Ufzd3";
|
|
packages = with pkgs; [
|
|
alacritty
|
|
bottom
|
|
brave
|
|
element-desktop
|
|
jamesdsp
|
|
keepassxc
|
|
neofetch
|
|
neovim
|
|
nextcloud-client
|
|
retroarchFull
|
|
rustup
|
|
spotify
|
|
];
|
|
};
|
|
}
|