CrOS/home/crow/common/core/nushell.nix
TheWanderingCrow b6d487cbb5 nushell
2025-07-14 11:22:42 -04:00

19 lines
360 B
Nix

{
config,
lib,
...
}: {
programs = {
nushell = {
enable = true;
shellAliases = {
set-nixpkgs-upstream = "git remote add upstream https://github.com/NixOS/nixpkgs.git";
nup = "sudo nixos-rebuild switch --flake .";
};
};
carapace = {
enable = true;
enableNushellIntegration = true;
};
};
}