Commit 9d11aa5

HPCesia <me@hpcesia.com>
2026-03-16 04:51:12
feat: remove nushell
1 parent 9ec2d71
Changed files (6)
modules
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;