diff --git a/devShell.nix b/devShell.nix index c23c49627..4f4075cf9 100644 --- a/devShell.nix +++ b/devShell.nix @@ -24,6 +24,7 @@ in { devShells.default = pkgs.mkShell { + name = "clan"; packages = [ select-shell pkgs.nix-unit diff --git a/docs/nix/shell.nix b/docs/nix/shell.nix index cd32e673a..0a4f2ed9b 100644 --- a/docs/nix/shell.nix +++ b/docs/nix/shell.nix @@ -11,6 +11,7 @@ ... }: pkgs.mkShell { + name = "clan-docs"; inputsFrom = [ docs self'.devShells.default diff --git a/lib/inventory/flake-module.nix b/lib/inventory/flake-module.nix index 4fb95c908..9d4f48b08 100644 --- a/lib/inventory/flake-module.nix +++ b/lib/inventory/flake-module.nix @@ -19,6 +19,7 @@ in }: { devShells.inventory-schema = pkgs.mkShell { + name = "clan-inventory-schema"; inputsFrom = with config.checks; [ lib-inventory-eval self'.devShells.default diff --git a/pkgs/clan-app/shell.nix b/pkgs/clan-app/shell.nix index ad9fe33fb..2dc2a373a 100644 --- a/pkgs/clan-app/shell.nix +++ b/pkgs/clan-app/shell.nix @@ -7,6 +7,7 @@ }: mkShell { + name = "clan-app"; inputsFrom = [ self'.devShells.default ]; diff --git a/pkgs/clan-cli/shell.nix b/pkgs/clan-cli/shell.nix index bdace6f79..15696a254 100644 --- a/pkgs/clan-cli/shell.nix +++ b/pkgs/clan-cli/shell.nix @@ -9,6 +9,7 @@ }: mkShell { + name = "clan-cli"; buildInputs = [ (clan-cli.pythonRuntime.withPackages ( ps: diff --git a/pkgs/clan-vm-manager/shell.nix b/pkgs/clan-vm-manager/shell.nix index 6b6c3c658..2c3e4aff6 100644 --- a/pkgs/clan-vm-manager/shell.nix +++ b/pkgs/clan-vm-manager/shell.nix @@ -26,6 +26,7 @@ let in mkShell { inherit (clan-vm-manager) nativeBuildInputs; + name = "clan-vm-manager"; buildInputs = [ ruff diff --git a/pkgs/icon-update/shell.nix b/pkgs/icon-update/shell.nix index 8873e38ee..ddaf0349c 100644 --- a/pkgs/icon-update/shell.nix +++ b/pkgs/icon-update/shell.nix @@ -1,5 +1,6 @@ { pkgs }: pkgs.mkShell { + name = "clan-icon-update"; packages = with pkgs; [ deno ]; env = { FIGMA_ICON_FILE_ID = "KJgLnsBI9nvUt44qKJXmVm"; diff --git a/pkgs/webview-ui/flake-module.nix b/pkgs/webview-ui/flake-module.nix index 5b4e85805..c6ca39073 100644 --- a/pkgs/webview-ui/flake-module.nix +++ b/pkgs/webview-ui/flake-module.nix @@ -48,6 +48,7 @@ ''; }; devShells.webview-ui = pkgs.mkShell { + name = "clan-webview-ui"; inputsFrom = [ config.packages.webview-ui self'.devShells.default