nix-system/home/more-software.nix
ant 05bbe7463b
All checks were successful
/ build-all (push) Successful in 1m37s
move programs in modules such that base.nix il a basic configuration
2025-09-27 11:32:20 +02:00

46 lines
689 B
Nix

{ lib, config, pkgs, ... }: {
imports = [
./lf.nix
./base.nix
];
home.packages = with pkgs; [
entr
trash-cli
nix-output-monitor
unzip
gnumake
pandoc
htop
ffmpeg-full
wget
dtrx
unzip
zip
glances
davfs2
yt-dlp
aria2
yazi
ncdu
android-tools
];
programs.neovim.extraPackages = with pkgs; [
nodejs_24
ocamlPackages.lsp
ocamlPackages.ocamlformat
cargo
nixd
nixfmt-rfc-style
lua-language-server
ocaml
ocamlPackages.ocaml-lsp
pyright
ripgrep
];
xdg.mimeApps.defaultApplications = { "text/plain" = "nvim.desktop"; };
programs.pistol.enable = true;
}