Commit 9d11aa5
Changed files (6)
modules
core
shell
tools
desktop
apps
terminal
dev
yazi
modules/core/shell/nushell.nix
@@ -1,14 +0,0 @@
-{
- flake.modules.nixos.core = {pkgs, ...}: {
- environment.systemPackages = [pkgs.nushell];
- };
-
- flake.modules.homeManager.core = _: {
- programs.nushell = {
- enable = true;
- settings = {
- show_banner = false;
- };
- };
- };
-}
modules/core/tools/autin.nix
@@ -8,7 +8,6 @@
enable = true;
enableBashIntegration = true;
enableFishIntegration = true;
- enableNushellIntegration = true;
settings = {
sync_address = "https://atuin.hpcesia.com";
sync_frequency = "10m";
modules/core/tools/carapace.nix
@@ -4,7 +4,6 @@
enable = true;
enableBashIntegration = true;
enableFishIntegration = true;
- enableNushellIntegration = true;
};
};
}
modules/core/tools/zoxide.nix
@@ -8,7 +8,6 @@
enable = true;
enableBashIntegration = true;
enableFishIntegration = true;
- enableNushellIntegration = true;
};
};
}
modules/desktop/apps/terminal/default.nix
@@ -4,7 +4,6 @@
environment.shells = with pkgs; [
bashInteractive
fish
- nushell
];
# set user's default shell system-wide
users.defaultUserShell = pkgs.bashInteractive;
modules/dev/yazi/default.nix
@@ -4,7 +4,6 @@
enable = true;
enableBashIntegration = true;
enableFishIntegration = true;
- enableNushellIntegration = true;
shellWrapperName = "yy";
plugins = {
git = pkgs.yaziPlugins.git;