mirror of
https://github.com/harivansh-afk/nix.git
synced 2026-04-19 07:03:47 +00:00
statusline and exlcude lazylock
This commit is contained in:
parent
905375ff1a
commit
3836361bfe
4 changed files with 27 additions and 4 deletions
|
|
@ -6,8 +6,12 @@
|
|||
}: let
|
||||
nvimConfig = lib.cleanSourceWith {
|
||||
src = ../config/nvim;
|
||||
filter = path: type: builtins.baseNameOf path != ".git";
|
||||
filter = path: type:
|
||||
builtins.baseNameOf path != ".git"
|
||||
&& builtins.baseNameOf path != "lazy-lock.json";
|
||||
};
|
||||
lazyLockSeed = ../config/nvim/lazy-lock.json;
|
||||
lazyLockPath = "${config.xdg.stateHome}/nvim/lazy-lock.json";
|
||||
python = pkgs.writeShellScriptBin "python" ''
|
||||
exec ${pkgs.python3}/bin/python3 "$@"
|
||||
'';
|
||||
|
|
@ -52,4 +56,15 @@ in {
|
|||
source = nvimConfig;
|
||||
recursive = true;
|
||||
};
|
||||
|
||||
home.activation.seedNvimLazyLock = lib.hm.dag.entryAfter ["writeBoundary"] ''
|
||||
state_dir="${config.xdg.stateHome}/nvim"
|
||||
lockfile="${lazyLockPath}"
|
||||
|
||||
if [ ! -e "$lockfile" ]; then
|
||||
mkdir -p "$state_dir"
|
||||
cp ${lazyLockSeed} "$lockfile"
|
||||
chmod u+w "$lockfile"
|
||||
fi
|
||||
'';
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue