dot_testing/boxes/phone/bash.nix

17 lines
269 B
Nix

{ lib, config, pkgs, home, ... }:
{
home.packages = with pkgs; [
bash
];
home.file = {
".bashrc" = {
source = lib.mkDefault ../../home/bash/bashrc;
};
".bash_profile" = {
source = lib.mkDefault ../../home/bash/profile;
};
};
}