mirror of
https://github.com/foo-dogsquared/website.git
synced 2025-01-31 16:58:03 +00:00
14 lines
319 B
Nix
14 lines
319 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
let
|
||
|
dotfiles = config.lib.file.mkOutOfStoreSymlink "/home/foo-dogsquared/dotfiles";
|
||
|
in
|
||
|
{
|
||
|
# Putting the dotfiles in their rightful place.
|
||
|
xdg.configFile = {
|
||
|
doom.source = "${dotfiles}/emacs";
|
||
|
wezterm.source = "${dotfiles}/wezterm";
|
||
|
nvim.source = "${dotfiles}/nvim";
|
||
|
};
|
||
|
}
|