From a9cd7fb56ea88e76c5fc87abcf8fed947bbf7acb Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Sun, 19 Sep 2021 21:19:48 -0400 Subject: [PATCH] feat: add basic bash config --- users/profiles/shells/bash.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 users/profiles/shells/bash.nix diff --git a/users/profiles/shells/bash.nix b/users/profiles/shells/bash.nix new file mode 100644 index 0000000..14fcd6e --- /dev/null +++ b/users/profiles/shells/bash.nix @@ -0,0 +1,12 @@ +{ pkgs, ... }: { + environment.shells = with pkgs; [ bashInteractive ]; + + programs = { + bash = { + enable = true; + enableVteIntetration = true; + }; + + starship.enableBashIntegration = true; + }; +}