Add basic packages and configured zsh and nvim
This commit is contained in:
20
home.nix
20
home.nix
@@ -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;
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user