dotfiles/nixos/essential.nix

65 lines
772 B
Nix
Raw Permalink Normal View History

2021-07-10 15:22:38 -06:00
{ pkgs, ... }:
2021-07-10 15:21:29 -06:00
{
nixpkgs.config.allowBroken = true;
2023-06-28 22:27:09 -06:00
2021-07-10 15:21:29 -06:00
environment.systemPackages = with pkgs; [
2023-06-18 00:40:15 -06:00
automake
2022-09-27 09:38:29 -06:00
bazel
2023-06-18 00:40:15 -06:00
bind
2021-07-10 15:21:29 -06:00
binutils
2023-07-28 13:30:05 -06:00
cachix
2023-06-18 00:40:15 -06:00
cmake
dex
direnv
dpkg
2023-08-23 14:14:08 -06:00
efibootmgr
emacs
2023-06-18 00:40:15 -06:00
fd
2023-12-22 22:13:14 -07:00
ffmpeg
bento4
2023-06-18 00:40:15 -06:00
file
2021-07-13 03:37:03 -06:00
gawk
2023-06-18 00:40:15 -06:00
gcc
gdb
2023-07-20 18:10:32 -06:00
git-lfs
2024-03-01 00:58:37 -07:00
git-fame
git-sync
2023-08-23 14:14:08 -06:00
gitFull
2023-08-01 19:51:13 -06:00
glxinfo
gnumake
2023-08-03 15:19:28 -06:00
gparted
home-manager
2021-07-11 13:34:38 -06:00
htop
inotify-tools
2023-08-01 17:46:59 -06:00
iotop
ispell
jq
2024-03-14 19:32:03 -06:00
just
2023-08-01 19:51:13 -06:00
lshw
lsof
2023-06-29 13:37:34 -06:00
magic-wormhole-rs
2023-05-14 15:15:10 -06:00
ncdu
neofetch
2023-12-21 16:08:34 -07:00
neovim
2023-05-14 15:15:10 -06:00
nix-index
2021-07-19 19:38:04 -06:00
pass
patchelf
pciutils
pstree
2023-08-23 14:14:08 -06:00
python-with-my-packages
2022-09-27 09:38:29 -06:00
rclone
2021-07-10 15:21:29 -06:00
rcm
ripgrep
2021-07-11 16:55:55 -06:00
silver-searcher
2023-08-23 00:11:49 -06:00
sysz
2023-08-27 19:40:10 -06:00
sshfs
2021-07-10 15:21:29 -06:00
tmux
2023-06-18 00:40:15 -06:00
tzupdate
2023-06-28 22:27:09 -06:00
udiskie
unzip
2021-07-11 16:55:55 -06:00
usbutils
2021-07-10 15:21:29 -06:00
wget
2021-07-10 15:22:38 -06:00
yubikey-manager
2021-07-10 15:21:29 -06:00
];
}