2024-03-27 23:45:23 +01:00
|
|
|
{
|
|
|
|
|
pkgs,
|
|
|
|
|
config,
|
|
|
|
|
lib,
|
|
|
|
|
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
|
|
|
|
|
|
|
|
|
|
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";
|
|
|
|
|
};
|
|
|
|
|
|
2024-07-03 00:38:20 +02:00
|
|
|
programs.neovim.enable = true;
|
|
|
|
|
programs.neovim.defaultEditor = true;
|
2024-03-27 23:45:23 +01:00
|
|
|
}
|