25 lines
424 B
Nix
25 lines
424 B
Nix
{ 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;
|
|
};
|
|
}
|