summaryrefslogblamecommitdiff
path: root/os/common/modules/environment.nix
blob: 38446f2578babec933967e5a0c02fed6901aea1f (plain) (tree)


















                                                       
{ pkgs, lib, ... }: {
  environment = {
    binsh = lib.getExe pkgs.dash;
    systemPackages = with pkgs; [
      dash
      neovim
    ];

    variables = {
      EDITOR = "nvim";
      VISUAL = "nvim";
    };

    shellAliases = {
      grep = "grep --color=auto";
      ls = "ls --color=auto --group-directories-first";
    };
  };
}