diff options
author | tv <tv@krebsco.de> | 2016-03-10 14:18:12 +0100 |
---|---|---|
committer | tv <tv@krebsco.de> | 2016-03-10 14:18:12 +0100 |
commit | cf416ecd6848a4f9e96126220fe86c50b2e86ca7 (patch) | |
tree | 0a40c4ce52279fbf54de3ff847ae934e79a765f0 /makefu/2configs/laptop-utils.nix | |
parent | 17be0772c5cfcb57f99299ad541b76dfabf8a62d (diff) | |
parent | 4ca96e8b04056ae9d06c2ff2e153d2e592991c15 (diff) |
Merge remote-tracking branch 'gum/master'
Diffstat (limited to 'makefu/2configs/laptop-utils.nix')
-rw-r--r-- | makefu/2configs/laptop-utils.nix | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/makefu/2configs/laptop-utils.nix b/makefu/2configs/laptop-utils.nix new file mode 100644 index 000000000..815ff7489 --- /dev/null +++ b/makefu/2configs/laptop-utils.nix @@ -0,0 +1,65 @@ +{ 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 +{ + nixpkgs.config.firefox = { + enableAdobeFlash = true; + }; + + krebs.per-user.makefu.packages = with pkgs; [ + # core + at_spi2_core + acpi + bc + exif + file + ntfs3g + pv + proot + sshpass + unzip + unrar + usbutils + zip + + # dev + python35Packages.virtualenv + + + # gui + chromium + clipit + feh + firefox + keepassx + pcmanfm + skype + mirage + tightvnc + gnome3.dconf + vlc + virtmanager + wireshark + xdotool + + # sectools + aria2 + binwalk + dnsmasq + iodine + mtr + nmap + + + # stuff + cac-api + cac-panel + krebspaste + ledger + pass + ]; +} |