Skip to content

Commit

Permalink
config: autoformat init (#15)
Browse files Browse the repository at this point in the history
* config: autoformat init

* auto-pairs: init (#11)

* treesitter: add rainbow brackets (#9)

* config: autoformat test commit

* treewide: nixfmt formatting

---------

Co-authored-by: MikaelFangel <[email protected]>
  • Loading branch information
MikaelFangel and MikaelFangel authored Oct 20, 2023
1 parent 0bb4dd0 commit cc84ef5
Show file tree
Hide file tree
Showing 2 changed files with 61 additions and 22 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/format.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Format
on:
pull_request:
push:
branches:
- main

jobs:
format:
runs-on: ubuntu-latest

permissions:
# Give the default GITHUB_TOKEN write permission to commit and push the
# added or changed files to the repository.
contents: write

steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install nix
uses: cachix/install-nix-action@v23
- name: Run nixfmt
run: nix fmt
- name: Get git status
run: git status
- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: "treewide: nixfmt formatting"
branch: ${{ github.head_ref }}
53 changes: 31 additions & 22 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,30 +6,39 @@
flake-utils.url = "github:numtide/flake-utils";
};

outputs = { nixpkgs, nixvim, flake-utils, ... }@inputs:
let config = import ./config; # import the module directly
outputs =
{ self
, nixpkgs
, nixvim
, flake-utils
, ...
} @ inputs:
let
config = import ./config; # import the module directly
in
flake-utils.lib.eachDefaultSystem (system:
let
nixvimLib = nixvim.lib.${system};
pkgs = import nixpkgs { inherit system; };
nixvim' = nixvim.legacyPackages.${system};
nvim = nixvim'.makeNixvimWithModule {
inherit pkgs;
module = config;
};
in
{
checks = {
default = nixvimLib.check.mkTestDerivationFromNvim {
inherit nvim;
name = "My nixvim configuration";
};
};
let
nixvimLib = nixvim.lib.${system};
pkgs = import nixpkgs { inherit system; };
nixvim' = nixvim.legacyPackages.${system};
nvim = nixvim'.makeNixvimWithModule {
inherit pkgs;
module = config;
};
in
{
formatter = nixpkgs.legacyPackages.x86_64-linux.nixpkgs-fmt;

packages = {
# Lets you run `nix run .` to start nixvim
default = nvim;
checks = {
default = nixvimLib.check.mkTestDerivationFromNvim {
inherit nvim;
name = "My nixvim configuration";
};
});
};

packages = {
# Lets you run `nix run .` to start nixvim
default = nvim;
};
});
}

0 comments on commit cc84ef5

Please sign in to comment.