63 lines
787 B
Nix
63 lines
787 B
Nix
|
{ pkgs, ... }:
|
||
|
|
||
|
# tools i use when actually working with the host.
|
||
|
# package version will now be maintained by nix-rebuild
|
||
|
#
|
||
|
# essentially `nix-env -q` of the main user
|
||
|
# TODO: split gui and non-gui
|
||
|
{
|
||
|
environment.systemPackages = with pkgs; [
|
||
|
# core
|
||
|
at_spi2_core
|
||
|
acpi
|
||
|
bc
|
||
|
exif
|
||
|
file
|
||
|
ntfs3g
|
||
|
pv
|
||
|
proot
|
||
|
sshpass
|
||
|
unzip
|
||
|
unrar
|
||
|
usbutils
|
||
|
zip
|
||
|
|
||
|
# dev
|
||
|
python35Packages.virtualenv
|
||
|
|
||
|
|
||
|
# gui
|
||
|
clipit
|
||
|
feh
|
||
|
keepassx
|
||
|
pcmanfm
|
||
|
skype
|
||
|
tightvnc
|
||
|
gnome3.dconf
|
||
|
vlc
|
||
|
virtmanager
|
||
|
wireshark
|
||
|
xdotool
|
||
|
|
||
|
# browser
|
||
|
firefox
|
||
|
chromium
|
||
|
|
||
|
# sectools
|
||
|
aria2
|
||
|
binwalk
|
||
|
dnsmasq
|
||
|
iodine
|
||
|
mtr
|
||
|
nmap
|
||
|
|
||
|
|
||
|
# stuff
|
||
|
cac-cli
|
||
|
cac-panel
|
||
|
krebspaste
|
||
|
ledger
|
||
|
password-store
|
||
|
];
|
||
|
}
|