dot_testing/home/bash/default.nix

19 lines
353 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" = {
source = ./bashrc;
};
".config/bash/profile" = {
source = ./profile;
};
};
}