flake/users/guanranwang/home-manager/darwin/dotfiles.nix

15 lines
247 B
Nix
Raw Normal View History

2023-09-19 00:17:43 +00:00
{ ... }:
let
configPath = ../common/dotfiles/config;
#dataPath = ../common/dotfiles/data;
#binPath = ../common/dotfiles/bin;
in
{
xdg.configFile = {
"fish" = {
2023-10-05 10:09:04 +00:00
source = "${configPath}/fish";
2023-09-19 00:17:43 +00:00
recursive = true;
};
};
}