feasible config for the beginning
This commit is contained in:
parent
b4c2ba8174
commit
25d5980e6c
13 changed files with 563 additions and 203 deletions
54
modules/home/bundles/core.nix
Normal file
54
modules/home/bundles/core.nix
Normal file
|
|
@ -0,0 +1,54 @@
|
|||
{
|
||||
pkgs,
|
||||
config,
|
||||
lib,
|
||||
inputs,
|
||||
...
|
||||
}: {
|
||||
imports = [];
|
||||
|
||||
nixpkgs.config = {
|
||||
allowUnfree = true;
|
||||
experimental-features = "nix-command flakes";
|
||||
};
|
||||
|
||||
programs.home-manager.enable = true;
|
||||
|
||||
home.packages = with pkgs; [
|
||||
# nix
|
||||
nil
|
||||
nh
|
||||
|
||||
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
|
||||
];
|
||||
|
||||
home.sessionVariables = {
|
||||
EDITOR = "nvim";
|
||||
};
|
||||
|
||||
programs.neovim.enable = true;
|
||||
programs.neovim.defaultEditor = true;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue