aboutsummaryrefslogblamecommitdiff
path: root/nix/users/fcuny/shell.nix
blob: b415038e4e9695868f97b492648d7329e944fc08 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11




       





                                
     


                  

                
 



                   
          



             
 

               
 



                         

                                          
 
                                                                                       


                             
                          

                                    
       
                  
                                      
                  
                 

                              
      





                          



                












                                  
                           




                                    
                           

    
{
  lib,
  pkgs,
  ...
}:
let
  isLinux = pkgs.stdenv.isLinux;
in
{
  home.packages =
    with pkgs;
    [
      # encryption
      age

      # shell
      shellcheck

      # shell utils
      coreutils
      direnv
      dust
      just
      procs
      ripgrep
      tree
      wget

      # network
      bandwhich

      # data manipulation
      jless
      jq
      yq
    ]
    ++ (lib.optionals (isLinux) [ htop ]);

  # https://github.com/nix-community/home-manager/blob/master/modules/programs/fish.nix
  programs.fish = {
    enable = true;
    interactiveShellInit = ''
      set fish_greeting ""

      fish_add_path -p ~/.cargo/bin/
    '';
    shellAbbrs = {
      ncg = "nix-collect-garbage -7d";
      c = "clear";
      j = "just";
      g = "git";
      gap = "git add --patch";
    };
  };

  # an alternative to find
  programs.fd = {
    enable = true;
    hidden = true;
    ignores = [
      ".git/"
      ".direnv/"
    ];
  };

  programs.direnv = {
    enable = true;
    nix-direnv.enable = true;
    enableZshIntegration = true;
    config = {
      global.disable_stdin = true;
      global.strict_env = true;
    };
  };

  home.sessionVariables = {
    EDITOR = "code --wait";
    HOMEBREW_NO_AUTO_UPDATE = 1;
    LESS = "-FRSXM";
    LESSCHARSET = "utf-8";
    PAGER = "less";
    SHELL = "${pkgs.fish}/bin/fish";
    VISUAL = "code --wait";
  };
}