From 79ccd11b5b55bb289de4d57bf578260d0824ee66 Mon Sep 17 00:00:00 2001 From: voidarc Date: Wed, 1 Apr 2026 20:27:10 +0100 Subject: [PATCH] added new thingys --- rust/flake.nix | 12 +++++++----- shell/flake.nix | 10 ++++++---- 2 files changed, 13 insertions(+), 9 deletions(-) diff --git a/rust/flake.nix b/rust/flake.nix index 1d8ba74..211f8a5 100644 --- a/rust/flake.nix +++ b/rust/flake.nix @@ -37,13 +37,15 @@ # Environment variables shellHook = '' - export RUST_BACKTRACE=1 + export RUST_BACKTRACE=1 + export DEVSHELL_NAME="󱄅 flake/#89dceb|🦀 rustproject/red" + # Trigger zsh if not already in it - if [[ -z "$ZSH_VERSION" ]]; then - exec zsh - fi - ''; + if [[ -z "$ZSH_VERSION" ]]; then + exec zsh + fi + ''; }; } ); diff --git a/shell/flake.nix b/shell/flake.nix index b032a22..741c69c 100644 --- a/shell/flake.nix +++ b/shell/flake.nix @@ -28,10 +28,12 @@ # Environment variables shellHook = '' - # Trigger zsh - if [[ -z "$ZSH_VERSION" ]]; then - exec zsh - fi + export DEVSHELL_NAME="󱄅 flake/#89dceb" + + # Trigger zsh + if [[ -z "$ZSH_VERSION" ]]; then + exec zsh + fi ''; }; }