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

27 lines
521 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 = {
"clash-meta" = {
source = "${configPath}/clash";
recursive = true;
};
"alacritty" = {
source = "${configPath}/alacritty";
recursive = true;
};
"fish" = {
source = "${configPath}/fish";
recursive = true;
};
"zsh/plugins" = {
source = "${configPath}/zsh";
recursive = true;
};
};
}