15 lines
415 B
Nix
15 lines
415 B
Nix
# Configuration of dotfile symlinks for programs
|
|
# not fully manged by home-manager
|
|
{ config, lib, pkgs, ... }:
|
|
with config.lib.file;
|
|
let dotdir = "${config.home.homeDirectory}/.dotfiles";
|
|
in
|
|
{
|
|
xdg.configFile = {
|
|
"tmux/tmux.conf".source = ../../tmux.conf;
|
|
"vim/vimrc".source = ../../vimrc;
|
|
"ideavim/ideavimrc".source = ../../ideavimrc;
|
|
"doom".source = mkOutOfStoreSymlink "${dotdir}/doom";
|
|
};
|
|
}
|