nix refactor

This commit is contained in:
2022-11-25 11:30:22 -05:00
parent 6d3b323ab1
commit eeefab3584
21 changed files with 420 additions and 186 deletions

13
bash/default.nix Normal file
View File

@@ -0,0 +1,13 @@
{ config, pkgs, ... }:
{
programs.bash = {
enable = true;
profileExtra =''
set -o vi
[ ! -z $TMUX ] || tmux a || tmux
neofetch
'';
};
}