From 8a8763d6b677f2abba23e6f9b34975185ae2b3c0 Mon Sep 17 00:00:00 2001 From: Dennis Date: Thu, 29 May 2025 18:30:24 +0200 Subject: [PATCH] fixes path after module separation --- modules/nvim/deck.nix | 2 +- modules/nvim/default.nix | 2 +- modules/wezterm/default.nix | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/nvim/deck.nix b/modules/nvim/deck.nix index 4b19be0..8cfad0e 100644 --- a/modules/nvim/deck.nix +++ b/modules/nvim/deck.nix @@ -4,6 +4,6 @@ xdg.configFile."nvim" = { # mkOutOfStoreSymlink needs an absolute path, otherwise it does not work: https://github.com/nix-community/home-manager/issues/676#issuecomment-1595795685 # TODO: At least make the location of the config folder dynamic so that it works on other machines - source = config.lib.file.mkOutOfStoreSymlink /home/deck/dev/nix-config/home/modules/nvim/config; + source = config.lib.file.mkOutOfStoreSymlink /home/deck/dev/nix-config/modules/nvim/config; }; } diff --git a/modules/nvim/default.nix b/modules/nvim/default.nix index b990f1f..cb36ab8 100644 --- a/modules/nvim/default.nix +++ b/modules/nvim/default.nix @@ -4,6 +4,6 @@ xdg.configFile."nvim" = { # mkOutOfStoreSymlink needs an absolute path, otherwise it does not work: https://github.com/nix-community/home-manager/issues/676#issuecomment-1595795685 # TODO: At least make the location of the config folder dynamic so that it works on other machines - source = config.lib.file.mkOutOfStoreSymlink /Users/dennis/dev/nix-config/home/modules/nvim/config; + source = config.lib.file.mkOutOfStoreSymlink /Users/dennis/dev/nix-config/modules/nvim/config; }; } diff --git a/modules/wezterm/default.nix b/modules/wezterm/default.nix index 016f660..739860e 100644 --- a/modules/wezterm/default.nix +++ b/modules/wezterm/default.nix @@ -4,6 +4,6 @@ xdg.configFile."wezterm" = { # mkOutOfStoreSymlink needs an absolute path, otherwise it does not work: https://github.com/nix-community/home-manager/issues/676#issuecomment-1595795685 # TODO: At least make the location of the config folder dynamic so that it works on other machines - source = config.lib.file.mkOutOfStoreSymlink /Users/dennis/dev/nix-config/home/modules/wezterm/config; + source = config.lib.file.mkOutOfStoreSymlink /Users/dennis/dev/nix-config/modules/wezterm/config; }; }