nixos

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

default.nix (279B)


      1 {...}: {
      2 	programs.nushell = {
      3 		enable = true;
      4 		environmentVariables = {
      5 			EDITOR = "hx";
      6 			SHELL = "nu";
      7 		};
      8 		settings = {
      9 			buffer_editor = "hx";
     10 			show_banner = false;
     11 		};
     12 		shellAliases = {
     13 			zed = "zeditor";
     14 		};
     15 	};
     16 	home.shell.enableNushellIntegration = true;
     17 }