Skip to content

Commit

Permalink
feat: add auto flake.lock update
Browse files Browse the repository at this point in the history
  • Loading branch information
olistrik committed Oct 14, 2024
1 parent c5eda7a commit 61f19a5
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 9 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/update-flake-lock.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: update-flake-lock
on:
workflow_dispatch: # allows manual triggering
schedule:
- cron: '0 0 * * 0' # runs weekly on Sunday at 00:00

jobs:
lockfile:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@main
- name: Update flake.lock
uses: DeterminateSystems/update-flake-lock@main
with:
pr-title: "Update flake.lock" # Title of PR to be created
pr-labels: | # Labels to be set on the PR
dependencies
automated
9 changes: 0 additions & 9 deletions build_systems.sh

This file was deleted.

9 changes: 9 additions & 0 deletions packages/nixvim/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,15 @@ nixvim.makeNixvimWithModule {
todo-comments = enabled;
surround = enabled;
fugitive = enabled;

dressing = {
enable = true;
settings = {
input = {
insert_only = false;
};
};
};
# abolish = enabled;
# easy-align = enabled;
# vim-repeat = enabled;
Expand Down

0 comments on commit 61f19a5

Please sign in to comment.