Last active
January 9, 2019 21:15
-
-
Save adrianparvino/9709fa0be253c28b7818cf72cc4324c1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
environment.systemPackages = with pkgs; let | |
otacon = pkgs.writeScriptBin "otacon" | |
'' | |
#!${pkgs.stdenv.shell} | |
echo 'Baka onii-chan!' | |
''; | |
yi = callPackage /home/myrl/Development/yi {}; | |
system = [ efibootmgr grub2_efi ]; | |
word_editing = [ evince ]; # tex libreoffice ghostscript biber plover | |
media = [ transmission mpv syncplay ]; # gimp ffmpeg imagemagick | |
security = [ gnupg1compat pass ]; # tomb | |
archiving = [ zip unzip unrar ]; | |
misc = [ otacon xdotool alsaUtils dmenu dmenu_sudo qrencode glxinfo feh fzf ]; # kolourpaint | |
tools = [ htop wget mtr ag scrot xclip st tmux xwinwrap ]; | |
dev = [ nixops manpages gcc gdb git emacs ghc yi ]; # myrddin R gnumake coq valgrind clang ocl-icd stackage2nix darcs coq | |
games = [ steam ]; # steam minecraft wine winetricks | |
networking = [ electrum mosh firefox tdesktop discord mu offlineimap gnutls samba ]; # slack samba | |
theming = [ qt5ct theme-vertex ]; # qt5ct libsForQt5.qtstyleplugins | |
accessibility = [ espeak tcl tclx ]; | |
in system | |
++ word_editing | |
++ media | |
++ security | |
++ archiving | |
++ misc | |
++ tools | |
++ dev | |
++ games | |
++ networking | |
++ theming | |
++ accessibility; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment