14 lines
No EOL
319 B
Nix
14 lines
No EOL
319 B
Nix
{ config, options, lib, pkgs, dotfiles, ... }:
|
|
|
|
{
|
|
extraSpecialArgs = {
|
|
dotfiles = inputs.dotfiles.outPath;
|
|
# or...
|
|
# dotfiles = ./path/to/my/dotfiles;
|
|
};
|
|
xdg.configFile = {
|
|
doom.source = "${dotfiles}/emacs";
|
|
wezterm.source = "${dotfiles}/wezterm";
|
|
nvim.source = "${dotfiles}/nvim";
|
|
};
|
|
} |