initial commit

This commit is contained in:
Roel de Cort 2024-04-13 00:18:36 +02:00
parent 21c876db7c
commit 75abec30f9
4 changed files with 521 additions and 0 deletions

64
flake.nix Normal file
View file

@ -0,0 +1,64 @@
{
description = "deCort.tech NeoVim configuration";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
flake-parts.url = "github:hercules-ci/flake-parts";
nixvim = {
url = "github:nix-community/nixvim";
inputs.nixpkgs.follows = "nixpkgs";
};
pre-commit-hooks = {
url = "github:cachix/pre-commit-hooks.nix";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = {
nixpkgs,
nixvim,
flake-parts,
pre-commit-hooks,
...
} @ inputs:
flake-parts.lib.mkFlake {inherit inputs;} {
systems = ["aarch64-linux" "x86_64-linux" "aarch64-darwin" "x86_64-darwin"];
perSystem = {
system,
pkgs,
self',
lib,
...
}: let
nixvim' = nixvim.legacyPackages.${system};
nvim = nixvim'.makeNixvimWithModule {
inherit pkgs;
module = ./config;
};
in {
checks = {
default = pkgs.nixvimLib.check.mkTestDerivationFromNvim {
inherit nvim;
name = "A nixvim configuration";
};
pre-commit-check = pre-commit-hooks.lib.${system}.run {
src = ./.;
hooks = {
statix.enable = true;
alejandra.enable = true;
};
};
};
formatter = pkgs.alejandra;
packages.default = nvim;
devShells = {
default = with pkgs;
mkShell {inherit (self'.checks.pre-commit-check) shellHook;};
};
};
};
}