dot_testing/home/bash/default.nix

19 lines
387 B
Nix

{ lib, config, pkgs, home, ... }:
{
# 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
];
home.file = {
".config/bash/bashrc" = {
source = ../../.config/bash/bashrc;
};
".config/bash/profile" = {
source = ../../.config/bash/profile;
};
};
}