Compare commits

..

4 commits

Author SHA1 Message Date
f1b1f03ae3 fixed nvim 2026-05-02 00:54:45 -04:00
d89ae55472 updated pi and nvim 2026-05-02 00:53:50 -04:00
6448224366 fixed nvim 2026-05-01 23:56:59 -04:00
a5e0bef85c removed nvim-treesitter 2026-05-01 23:32:49 -04:00
3 changed files with 6 additions and 3 deletions

View file

@ -3,6 +3,7 @@
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"; };
@ -31,7 +32,9 @@ in
}; };
home.file.".config/nvim" = { home.file.".config/nvim" = {
source = config.lib.file.mkOutOfStoreSymlink ./nvim; # Keep Neovim's config writable. In a flake, `./nvim` is copied into
# /nix/store before Home Manager can create an out-of-store symlink.
source = config.lib.file.mkOutOfStoreSymlink nvimConfigPath;
recursive = true; recursive = true;
}; };
}; };

@ -1 +1 @@
Subproject commit 376b9c5c16b9d8b121b73516219082e57b397bc9 Subproject commit 87403b7d6fdc8b71da8d5d9b2f81f62e0e587006

View file

@ -4,7 +4,7 @@ with lib;
let let
cfg = config.modules.user.pi; cfg = config.modules.user.pi;
npmGlobal = "${config.home.homeDirectory}/.npm-global"; npmGlobal = "${config.home.homeDirectory}/.npm-global";
piVersion = "0.70.5"; piVersion = "0.72.0";
in in
{ options.modules.user.pi = { enable = mkEnableOption "user.pi"; }; { options.modules.user.pi = { enable = mkEnableOption "user.pi"; };