12 lines
245 B
Nix
12 lines
245 B
Nix
{...}: let
|
|
configPath = ../common/dotfiles/config;
|
|
#dataPath = ../common/dotfiles/data;
|
|
#binPath = ../common/dotfiles/bin;
|
|
in {
|
|
xdg.configFile = {
|
|
"fish" = {
|
|
source = "${configPath}/fish";
|
|
recursive = true;
|
|
};
|
|
};
|
|
}
|