nix/home.nix

38 lines
545 B
Nix
Raw Normal View History

2022-11-15 17:32:46 +00:00
{ config, pkgs, ... }:
{
2022-11-25 16:30:22 +00:00
imports = [
./bash
./git
./nvim
./powerline
./readline
./tmux
];
2022-11-15 17:32:46 +00:00
# Home Manager Config
home.username = "evanreichard";
home.homeDirectory = "/Users/evanreichard";
home.stateVersion = "22.05";
programs.home-manager.enable = true;
# Global Packages
2022-11-25 16:30:22 +00:00
home.packages = with pkgs; [
bashInteractive
htop
k9s
kubectl
mosh
neofetch
nerdfonts
python311
tldr
2022-11-15 17:32:46 +00:00
];
# Other Programs
programs.jq.enable = true;
programs.pandoc.enable = true;
}