Initial flake commit

Enough of an initial flake and layout for an initial commit.
This commit is contained in:
Wesley Irvin
2023-06-29 13:42:57 -04:00
parent 69122b6ad7
commit dd4835f520
9 changed files with 155 additions and 37 deletions

25
users/wesley.nix Normal file
View File

@@ -0,0 +1,25 @@
{ 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
];
};
}