Files
nix-config/modules/programs/bash.nix
T
Senior Matt 0d4c032616 niri matugen
2026-04-15 19:15:43 +05:00

16 lines
307 B
Nix

{ self, ... }:
{
flake.nixosModules.bash = {
home-manager.users.${self.user}.imports = [
{
programs.bash = {
enable = true;
bashrcExtra = ''
PS1='\n\[\033[1;36m\][\[\e]0;\u@\h: \w\a\]\u@\h:\w]\$\[\033[0m\] '
'';
};
}
];
};
}