-
Notifications
You must be signed in to change notification settings - Fork 11
/
flake.nix
45 lines (43 loc) · 1.13 KB
/
flake.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
description = "Nix flake of Awesome Neovim plugins";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
flake-utils.url = "github:numtide/flake-utils";
flake-compat.url = "github:edolstra/flake-compat";
flake-compat.flake = false;
treefmt-nix.url = "github:numtide/treefmt-nix";
treefmt-nix.inputs.nixpkgs.follows = "nixpkgs";
};
outputs =
{
self,
nixpkgs,
flake-utils,
treefmt-nix,
...
}:
{
overlays.default = import ./nix/overlay.nix;
}
// flake-utils.lib.eachDefaultSystem (
system:
let
pkgs = import nixpkgs {
inherit system;
overlays = [
self.overlays.default
(import ./nix/dev-shells.nix)
];
};
treefmt = treefmt-nix.lib.evalModule pkgs ./treefmt.nix;
in
rec {
packages = flake-utils.lib.filterPackages system pkgs.awesomeNeovimPlugins;
formatter = treefmt.config.build.wrapper;
checks = packages // {
format = treefmt.config.build.check self;
};
inherit (pkgs) devShells;
}
);
}