This commit is contained in:
Sridhar Ratnakumar 2026-02-14 19:33:12 -05:00
parent 4ec757e7b5
commit 1bf5049ebb
10 changed files with 1 additions and 194 deletions

View file

@ -1,3 +0,0 @@
$env.config = {
edit_mode: vi
}

View file

@ -1,9 +0,0 @@
{ config, ... }:
{
programs.nushell = {
enable = true;
envFile.source = ./env.nu;
configFile.source = ./config.nu;
shellAliases = config.home.shellAliases;
};
}

View file

@ -1,8 +0,0 @@
$env.PATH = (
$env.PATH
| split row (char esep)
| prepend $"/etc/profiles/per-user/($env.USER)/bin"
| prepend $"/Users/($env.USER)/.nix-profile/bin"
| prepend '/run/current-system/sw/bin/'
| prepend "/nix/var/nix/profiles/default/bin"
)

View file

@ -26,7 +26,6 @@ in
# Useful for Nix development
ci
touchpr
omnix
nixpkgs-fmt
just

View file

@ -3,6 +3,5 @@
imports = [
./cli/zsh.nix
./cli/bash.nix
./cli/nushell
];
}