Last active
January 9, 2019 21:19
-
-
Save adrianparvino/21f72956a94c442d9e3403c1c58a59d1 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 | |
ghc = ghcWithPackages (hpkgs: with hpkgs; | |
[ xmonad | |
xmonad-contrib | |
xmonad-extras | |
]); | |
system = []; | |
word_editing = []; | |
media = []; | |
security = []; | |
archiving = []; | |
misc = []; | |
tools = []; | |
dev = [ ghc ]; | |
games = []; | |
networking = []; | |
theming = []; | |
accessibility = []; | |
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