cleanup nvim merge and general janitorial work

This commit is contained in:
iofq 2026-02-26 22:17:19 -06:00
parent c544159576
commit db330b546d
30 changed files with 254 additions and 1300 deletions

View file

@ -0,0 +1,26 @@
name: "Update Nix Flake Inputs"
on:
workflow_dispatch:
schedule:
- cron: "0 10 1,14 * *"
jobs:
update:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install Nix
uses: cachix/install-nix-action@v20
- name: Update flake inputs
id: update
uses: DeterminateSystems/update-flake-lock@v19
with:
pr-title: "chore: update flake.lock"
commit-msg: "chore: update flake.lock"
pr-reviewers: iofq
pr-labels: |
dependencies
automated
auto-merge
- name: Print PR number
run: echo Pull request number is ${{ steps.update.outputs.pull-request-number }}.