mirror of
https://github.com/artagaz/nix-config.git
synced 2026-06-23 02:05:45 +07:00
16 lines
307 B
Nix
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\] '
|
|
'';
|
|
};
|
|
}
|
|
];
|
|
};
|
|
}
|