mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-17 04:24:11 -05:00
19 lines
360 B
Nix
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;
|
|
};
|
|
};
|
|
}
|