This commit is contained in:
Bryan Ramos 2026-05-11 21:53:01 -04:00
parent da8ee67320
commit c5c4b97b36
6 changed files with 6 additions and 7 deletions

View file

@ -13,7 +13,7 @@ in
}; };
home.file.".config/bash" = { home.file.".config/bash" = {
source = config.lib.file.mkOutOfStoreSymlink ./bash; source = ./bash;
recursive = true; recursive = true;
}; };

View file

@ -20,7 +20,7 @@ in
git-crypt git-crypt
]; ];
file.".config/git" = { file.".config/git" = {
source = config.lib.file.mkOutOfStoreSymlink ./git; source = ./git;
recursive = true; recursive = true;
}; };
}; };

View file

@ -3,7 +3,6 @@
with lib; with lib;
let let
cfg = config.modules.user.neovim; cfg = config.modules.user.neovim;
nvimConfigPath = "${config.home.homeDirectory}/nixos/user/modules/neovim/nvim";
in in
{ options.modules.user.neovim = { enable = mkEnableOption "user.neovim"; }; { options.modules.user.neovim = { enable = mkEnableOption "user.neovim"; };
@ -34,7 +33,7 @@ in
home.file.".config/nvim" = { home.file.".config/nvim" = {
# Keep Neovim's config writable. In a flake, `./nvim` is copied into # Keep Neovim's config writable. In a flake, `./nvim` is copied into
# /nix/store before Home Manager can create an out-of-store symlink. # /nix/store before Home Manager can create an out-of-store symlink.
source = config.lib.file.mkOutOfStoreSymlink nvimConfigPath; source = ./nvim;
recursive = true; recursive = true;
}; };
}; };

@ -1 +1 @@
Subproject commit c50b9445bc365fa1d1f6aedb2e0fc34e7221e775 Subproject commit 7f6fe43a9f70018bcbaea4f468729650a2606a15

View file

@ -16,7 +16,7 @@ in
vim vim
]; ];
file.".vim" = { file.".vim" = {
source = config.lib.file.mkOutOfStoreSymlink ./vim; source = ./vim;
recursive = true; recursive = true;
}; };
}; };

@ -1 +1 @@
Subproject commit c5b93f1225c1434e93f4be88bb1e8686e94add79 Subproject commit e3b54f994a2bf14fa81d50351d341b12e1e287b7