mirror of
https://github.com/Alexandre1a/NixOSDots.git
synced 2026-03-10 16:29:46 +01:00
25 lines
382 B
Nix
25 lines
382 B
Nix
{ pkgs, ... }:
|
|
{
|
|
environment = {
|
|
systemPackages = with pkgs; [
|
|
# Text editors
|
|
neovim
|
|
vim
|
|
# Sytem utilities
|
|
wget
|
|
git
|
|
tree
|
|
btop
|
|
eza
|
|
fastfetch
|
|
ffmpeg
|
|
fzf
|
|
netcat
|
|
tmux
|
|
gnupg
|
|
cmatrix
|
|
gh
|
|
];
|
|
};
|
|
}
|