Advertisement
Guest User

Untitled

a guest
Apr 29th, 2019
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. { config, pkgs, lib, ... }:
  2.  
  3. {
  4. # Let Home Manager install and manage itself.
  5. home.packages = with pkgs; [
  6. htop
  7. ghc
  8. direnv
  9. fish
  10. git
  11. stack
  12. neovim
  13. pandoc
  14. ranger
  15. ripgrep
  16. tree
  17. fish
  18. exa
  19. tmux
  20. ] ++
  21. lib.mkIf pkgs.stdenv.isDarwin
  22. [
  23. pandoc
  24. awscli
  25. ffmpeg
  26. gcc
  27. go
  28. hdf5
  29. markdown
  30. nmap
  31. ];
  32.  
  33. programs.home-manager.enable = true;
  34. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement