From c7abad00b530354b58d5747de15e919a76a510e7 Mon Sep 17 00:00:00 2001 From: RGBCube Date: Sat, 19 Jul 2025 21:14:16 +0300 Subject: [PATCH] nushell: move to shells directory --- modules/common/{nushell/default.nix => shell/0_nushell.nix} | 4 ++-- modules/common/{nushell/config.nu => shell/0_nushell.nu} | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename modules/common/{nushell/default.nix => shell/0_nushell.nix} (97%) rename modules/common/{nushell/config.nu => shell/0_nushell.nu} (100%) diff --git a/modules/common/nushell/default.nix b/modules/common/shell/0_nushell.nix similarity index 97% rename from modules/common/nushell/default.nix rename to modules/common/shell/0_nushell.nix index a9f5790..0226b61 100644 --- a/modules/common/nushell/default.nix +++ b/modules/common/shell/0_nushell.nix @@ -58,10 +58,10 @@ in { programs.nushell = enabled { inherit package; - configFile.text = readFile ./config.nu; - inherit (config.environment) shellAliases; inherit environmentVariables; + + configFile.text = readFile ./0_nushell.nu; }; })]; } diff --git a/modules/common/nushell/config.nu b/modules/common/shell/0_nushell.nu similarity index 100% rename from modules/common/nushell/config.nu rename to modules/common/shell/0_nushell.nu