15 lines
301 B
Nix
15 lines
301 B
Nix
{ config, lib, pkgs, ... }:
|
|
{
|
|
programs.zoxide.enableNushellIntegration = true;
|
|
programs.direnv.enableNushellIntegration = true;
|
|
|
|
programs.nushell = {
|
|
enable = true;
|
|
|
|
shellAliases = {
|
|
ec = "emacsclient -n --alternate-editor=emacs";
|
|
pubip = "curl icanhazip.com";
|
|
};
|
|
};
|
|
}
|