Skip to content

Instantly share code, notes, and snippets.

@adrianparvino
Last active January 9, 2019 21:19
Show Gist options
  • Save adrianparvino/21f72956a94c442d9e3403c1c58a59d1 to your computer and use it in GitHub Desktop.
Save adrianparvino/21f72956a94c442d9e3403c1c58a59d1 to your computer and use it in GitHub Desktop.
{
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