Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- { config, pkgs, ... }:
- {
- # Let Home Manager install and manage itself.
- home.packages = with pkgs; [
- htop
- ghc
- direnv
- fish
- git
- stack
- neovim
- pandoc
- ranger
- ripgrep
- tree
- fish
- exa
- tmux
- ];
- mkIf pkgs.stdenv.isDarwin {
- home.packages = with pkgs; [
- pandoc
- awscli
- ffmpeg
- gcc
- go
- hdf5
- markdown
- nmap
- ];
- }
- programs.home-manager.enable = true;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement