dot_testing/home/bash/default.nix

19 lines
387 B
Nix
Raw Permalink Normal View History

2023-12-20 22:33:00 -06:00
{ lib, config, pkgs, home, ... }:
{
2023-12-21 15:26:09 -06:00
# if we use programs.bash.enable, it creates spurious .bashrc and .profile in
# our home directory, which is no good
home.packages = with pkgs; [
bash
];
2023-12-20 22:33:00 -06:00
home.file = {
".config/bash/bashrc" = {
2024-04-06 17:29:20 -05:00
source = ../../.config/bash/bashrc;
2023-12-20 22:33:00 -06:00
};
".config/bash/profile" = {
2024-04-06 17:29:20 -05:00
source = ../../.config/bash/profile;
2023-12-20 22:33:00 -06:00
};
};
}