nix-templates/home/dev/default.nix

42 lines
404 B
Nix
Raw Permalink Normal View History

2025-06-25 01:35:01 -04:00
{
pkgs,
...
}: {
imports = [
./emacs.nix
./git.nix
./terminal.nix
./vscode.nix
./zed.nix
];
home.packages = with pkgs; [
neovim
file
pciutils # lspci
usbutils # lsusb
btop
bottom
htop
lsof
lm_sensors
powertop
procs
libqalculate
2025-06-25 01:35:01 -04:00
jq
unzip
unrar-wrapper
p7zip
atool
fastfetch
hyfetch
2025-06-25 01:35:01 -04:00
];
2025-06-25 01:35:01 -04:00
}