dotfiles/hosts/_common/xdg.nix
2023-01-02 11:56:47 -05:00

15 lines
236 B
Nix

{ pkgs, ... }:
{
xdg.configFile = {
"nvim" = {
source = ../../home/config/nvim;
recursive = true;
};
"fish" = {
source = ../../home/config/fish;
recursive = true;
};
};
}