From 313f3c0b874741cb77dd31f8972259b9f4cb504a Mon Sep 17 00:00:00 2001 From: Hadi <112569860+anotherhadi@users.noreply.github.com> Date: Thu, 21 May 2026 10:03:37 +0200 Subject: [PATCH] add direnv support Signed-off-by: Hadi <112569860+anotherhadi@users.noreply.github.com> --- home/programs/shell/default.nix | 1 + home/programs/shell/direnv.nix | 6 ++++++ 2 files changed, 7 insertions(+) create mode 100644 home/programs/shell/direnv.nix diff --git a/home/programs/shell/default.nix b/home/programs/shell/default.nix index af8a8f1..a960cd7 100644 --- a/home/programs/shell/default.nix +++ b/home/programs/shell/default.nix @@ -6,5 +6,6 @@ ./starship.nix ./zoxide.nix ./eza.nix + ./direnv.nix ]; } diff --git a/home/programs/shell/direnv.nix b/home/programs/shell/direnv.nix new file mode 100644 index 0000000..2b51c9d --- /dev/null +++ b/home/programs/shell/direnv.nix @@ -0,0 +1,6 @@ +{ + programs.direnv = { + enable = true; + nix-direnv.enable = true; + }; +}