dot_testing/home/bash/default.nix

13 lines
186 B
Nix

{ lib, config, pkgs, home, ... }:
{
home.file = {
".config/bash/bashrc" = {
source = ./bashrc;
};
".config/bash/profile" = {
source = ./profile;
};
};
}