mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-25 01:26:14 +01:00
519d7b3841
Signed-off-by: Magic_RB <magic_rb@redalder.org>
16 lines
342 B
Nix
16 lines
342 B
Nix
{ pkgs, ... }:
|
|
{
|
|
programs.direnv.enable = true;
|
|
programs.direnv.nix-direnv.enable = true;
|
|
|
|
home.file.".bash_profile".source = ./bash_profile;
|
|
home.file.".bashrc".source = pkgs.writeSubstitutedFile {
|
|
name = ".bashrc";
|
|
file = ./bashrc;
|
|
substitutes = {
|
|
"exa" = "${pkgs.exa}";
|
|
"bat" = "${pkgs.bat}";
|
|
};
|
|
};
|
|
}
|