This repository has been archived on 2024-07-29. You can view files and clone it, but cannot push or open issues or pull requests.
nix-config/home/default.nix
Wyatt J. Miller 08a543fabe added significant items
added fish shellInit, removed top level empty configuration, removed
lib.mkIf logic for fish aliases
2024-07-21 10:03:25 -04:00

47 lines
678 B
Nix

{ config, pkgs, lib, home-manager, ... }:
{
imports = [
./atuin
./bat
./direnv
./eza
./fish
./git
./lazygit
./neovim
./starship
];
config = {
programs.home-manager.enable = true;
fonts.fontconfig.enable = true;
home.stateVersion = "24.05";
home.username = "wyatt";
home.homeDirectory = "/Users/wyatt";
home.packages = with pkgs; [
discord
babelfish
obsidian
tmux
zoxide
wget
nerdfonts
jdk
prismlauncher
iterm2
zed
vscode
nodejs
cargo
gcc
python3
];
home.sessionVariables = {
EDITOR = "nvim";
};
};
}