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
2024-07-19 02:08:20 -04:00

44 lines
582 B
Nix

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