2016-02-22 13:28:05 +00:00
|
|
|
{ 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
|
|
|
|
{
|
2016-02-28 01:25:53 +00:00
|
|
|
nixpkgs.config.firefox = {
|
|
|
|
enableAdobeFlash = true;
|
|
|
|
};
|
|
|
|
|
2016-02-26 22:38:50 +00:00
|
|
|
krebs.per-user.makefu.packages = with pkgs; [
|
2016-02-22 13:28:05 +00:00
|
|
|
# core
|
|
|
|
at_spi2_core
|
|
|
|
acpi
|
|
|
|
bc
|
|
|
|
exif
|
|
|
|
file
|
|
|
|
ntfs3g
|
|
|
|
pv
|
|
|
|
proot
|
|
|
|
sshpass
|
|
|
|
unzip
|
|
|
|
unrar
|
|
|
|
usbutils
|
|
|
|
zip
|
|
|
|
|
|
|
|
# dev
|
|
|
|
python35Packages.virtualenv
|
|
|
|
|
|
|
|
|
|
|
|
# gui
|
2016-02-26 22:38:50 +00:00
|
|
|
chromium
|
2016-02-22 13:28:05 +00:00
|
|
|
clipit
|
|
|
|
feh
|
2016-02-26 22:38:50 +00:00
|
|
|
firefox
|
2016-02-22 13:28:05 +00:00
|
|
|
keepassx
|
|
|
|
pcmanfm
|
|
|
|
skype
|
2016-02-26 22:38:50 +00:00
|
|
|
mirage
|
2016-02-22 13:28:05 +00:00
|
|
|
tightvnc
|
|
|
|
gnome3.dconf
|
|
|
|
vlc
|
|
|
|
virtmanager
|
|
|
|
wireshark
|
|
|
|
xdotool
|
|
|
|
|
|
|
|
# sectools
|
|
|
|
aria2
|
|
|
|
binwalk
|
|
|
|
dnsmasq
|
|
|
|
iodine
|
|
|
|
mtr
|
|
|
|
nmap
|
|
|
|
|
|
|
|
|
|
|
|
# stuff
|
2016-02-26 22:38:50 +00:00
|
|
|
cac-api
|
2016-02-22 13:28:05 +00:00
|
|
|
cac-panel
|
|
|
|
krebspaste
|
|
|
|
ledger
|
2016-02-26 22:38:50 +00:00
|
|
|
pass
|
2016-02-22 13:28:05 +00:00
|
|
|
];
|
|
|
|
}
|