flake/nixos/pkg.nix

64 lines
1 KiB
Nix
Raw Permalink Normal View History

{ pkgs, lib, inputs, system, ... }:
let
# List of packages installed in system profile. To search, run:
2024-11-16 13:38:09 -05:00
# $ nix search wget
packages = with pkgs; [
2024-11-16 13:38:09 -05:00
wget
curl
git
(nnn.override { withNerdIcons = true; })
fzf
ripgrep
fastfetch
zip
xz
unzip
jq
yq-go
eza
dnsutils
nmap
which
tree
gnupg
nix-output-monitor
glow
btop
strace
ltrace
lsof
sysstat
lm_sensors
ethtool
pciutils
usbutils
nil
lazygit
lazydocker
bat
nixfmt
2024-11-16 22:04:45 -05:00
forgejo-runner # for some reason this installs forgejo-runner as act_runner
2024-11-17 14:46:19 -05:00
libwebp
2024-11-18 19:45:07 -05:00
fontforge
2024-11-16 13:38:09 -05:00
# python stuff 🐍
uv
python313
python312
python311
# javascript stuff 🤮
nodejs
corepack
];
flakePackages = with inputs; [ compose2nix.packages.${system}.default ];
in {
environment.systemPackages = lib.lists.unique (packages ++ flakePackages);
2024-11-16 13:38:09 -05:00
# install docker
virtualisation.docker = { enable = true; };
# remove nano
programs.nano.enable = false;
}