14 lines
325 B
YAML
14 lines
325 B
YAML
|
|
# See https://pre-commit.com for more information
|
||
|
|
# See https://pre-commit.com/hooks.html for more hooks
|
||
|
|
repos:
|
||
|
|
- repo: local
|
||
|
|
hooks:
|
||
|
|
- id: update-flake-lock
|
||
|
|
name: Update Flake Lock
|
||
|
|
entry: nix flake update --flake .
|
||
|
|
language: system
|
||
|
|
always_run: true
|
||
|
|
pass_filenames: false
|
||
|
|
stages: [pre-commit]
|
||
|
|
|