37 lines
490 B
Nix
37 lines
490 B
Nix
{ pkgs, ... }@inputs: {
|
|
|
|
# welcome to nix
|
|
programs.nix-ld = { enable = true; };
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
# bare essentials
|
|
git
|
|
neovim
|
|
tmux
|
|
eza
|
|
expect
|
|
fzf
|
|
gum
|
|
rsync
|
|
# mason needs stuff
|
|
gcc
|
|
clang-tools
|
|
cargo
|
|
nodejs_24
|
|
jdk
|
|
tree-sitter
|
|
python3
|
|
go
|
|
# mason needs stuff
|
|
unzip
|
|
# telescope
|
|
fzf
|
|
ripgrep
|
|
# stuff
|
|
nixd
|
|
nixfmt-rfc-style
|
|
nix-output-monitor
|
|
nvd
|
|
];
|
|
|
|
}
|