nixvimConfig/modules/home/bundles/core.nix

86 lines
1.1 KiB
Nix
Raw Normal View History

2024-03-27 23:45:23 +01:00
{
pkgs,
config,
inputs,
...
}: {
2024-07-02 18:36:44 +02:00
imports = [
];
2024-03-27 23:45:23 +01:00
nixpkgs.config = {
allowUnfree = true;
experimental-features = "nix-command flakes";
};
programs.home-manager.enable = true;
home.packages = with pkgs; [
# nix
nil
nh
tldr
2024-03-27 23:45:23 +01:00
git
lazygit
tree-sitter
# file-management
ranger
pistol
file
p7zip
unzip
zip
# tools
killall
fzf
eza # ls-replacement
fd
zoxide
bat
dust
ripgrep
fastfetch
wget
2024-07-03 17:37:04 +02:00
lsd
2024-07-10 15:18:43 +02:00
numbat
zellij
2024-03-27 23:45:23 +01:00
];
home.sessionVariables = {
EDITOR = "nvim";
};
2024-07-03 17:37:04 +02:00
programs.zsh = {
enable = true;
enableCompletion = true;
autosuggestion.enable = true;
syntaxHighlighting.enable = true;
shellAliases = {
ls = "lsd";
};
history = {
size = 10000;
path = "${config.xdg.dataHome}/zsh/history";
};
2024-07-08 12:36:26 +02:00
oh-my-zsh = {
enable = true;
plugins = [ "git" "zoxide" ];
};
2024-07-03 17:37:04 +02:00
};
programs.neovim = {
enable = false;
defaultEditor = false;
# package = inputs.nixvim-config.packages.${pkgs.system}.default;
};
2024-03-27 23:45:23 +01:00
}