how did this even happen in the first place

This commit is contained in:
sadan 2024-11-26 17:23:47 -05:00
parent 06cb508501
commit a2514413e8
No known key found for this signature in database

View file

@ -1,4 +1,4 @@
{pkgs, ...}: { {pkgs, lib, config, ...}: {
home = { home = {
packages = with pkgs; [ packages = with pkgs; [
neovim neovim
@ -6,7 +6,7 @@
file = { file = {
nvim = { nvim = {
recursive = true; recursive = true;
source = pkgs.lib.file.mkOutOfStoreSymlink "${pkgs.home.homeDirectory}/nixos/dotfiles/nvim"; source = lib.file.mkOutOfStoreSymlink "${config.home.homeDirectory}/nixos/dotfiles/nvim";
target = "./.config/nvim"; target = "./.config/nvim";
}; };
}; };