dot_testing/boxes/phone/bash.nix

17 lines
269 B
Nix
Raw Normal View History

2024-03-15 18:51:36 -05:00
{ 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;
};
};
}