From 13cf1c296bffef8da6ec2186be061a13ff76cfbf Mon Sep 17 00:00:00 2001 From: Hektor Misplon Date: Wed, 11 Mar 2026 19:56:22 +0100 Subject: [PATCH] refactor: simplify bash configuration --- home/hosts/andromache/default.nix | 1 + home/hosts/astyanax/default.nix | 1 + home/modules/shell/bash.nix | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/home/hosts/andromache/default.nix b/home/hosts/andromache/default.nix index cca15cd..0f3ab43 100644 --- a/home/hosts/andromache/default.nix +++ b/home/hosts/andromache/default.nix @@ -48,6 +48,7 @@ in comms.signal.enable = true; github.enable = true; shell.bash.aliases.lang-js = true; + shell.bash.addBinToPath = true; programs = { home-manager.enable = true; diff --git a/home/hosts/astyanax/default.nix b/home/hosts/astyanax/default.nix index 69f7324..0893c04 100644 --- a/home/hosts/astyanax/default.nix +++ b/home/hosts/astyanax/default.nix @@ -46,6 +46,7 @@ in comms.signal.enable = true; github.enable = true; shell.bash.aliases.lang-js = true; + shell.bash.addBinToPath = true; programs = { home-manager.enable = true; diff --git a/home/modules/shell/bash.nix b/home/modules/shell/bash.nix index 266f428..9e6097d 100644 --- a/home/modules/shell/bash.nix +++ b/home/modules/shell/bash.nix @@ -25,7 +25,7 @@ in addBinToPath = lib.mkOption { type = lib.types.bool; - default = true; + default = false; }; extraInit = lib.mkOption {