Files
nixos-configs/users/wesley.nix
Wesley Irvin 5e0beeda0b Added GCC
Added in GCC for user wesley.
2023-07-01 16:53:42 -04:00

27 lines
566 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
gcc
jamesdsp
keepassxc
neofetch
neovim
nextcloud-client
retroarchFull
rustup
spotify
];
};
}