Advertisement
Guest User

Untitled

a guest
Apr 29th, 2019
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. { config, pkgs, ... }:
  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.  
  22. mkIf pkgs.stdenv.isDarwin {
  23. home.packages = with pkgs; [
  24. pandoc
  25. awscli
  26. ffmpeg
  27. gcc
  28. go
  29. hdf5
  30. markdown
  31. nmap
  32. ];
  33. }
  34.  
  35. programs.home-manager.enable = true;
  36. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement