Add basic packages and configured zsh and nvim

This commit is contained in:
2023-05-16 22:50:07 +02:00
parent 10930e861a
commit 0c9e597c63
10 changed files with 169 additions and 1 deletions

View File

@@ -1,6 +1,24 @@
{ pkgs, ... }: {
{ pkgs, lib, ... }: {
home.username = "briemens";
home.homeDirectory = "/Users/briemens";
home.stateVersion = "22.11";
programs.home-manager.enable = true;
imports = [
./bash/bash.nix
./git/git.nix
./nvim/nvim.nix
./zsh/zsh.nix
];
home.packages = with pkgs; [
bashInteractive # don't ask me why
vifm
];
programs.htop.enable = true;
programs.fzf = {
enable = true;
};
}