Compare commits

..

No commits in common. "f1b1f03ae32c862aa5386ac81f9306131a4112de" and "5287411131920ecd08d231cc2261d822e4b25401" have entirely different histories.

3 changed files with 3 additions and 6 deletions

View file

@ -3,7 +3,6 @@
with lib;
let
cfg = config.modules.user.neovim;
nvimConfigPath = "${config.home.homeDirectory}/nixos/user/modules/neovim/nvim";
in
{ options.modules.user.neovim = { enable = mkEnableOption "user.neovim"; };
@ -32,9 +31,7 @@ in
};
home.file.".config/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;
source = config.lib.file.mkOutOfStoreSymlink ./nvim;
recursive = true;
};
};

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

View file

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