-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflake.nix
89 lines (79 loc) · 2.22 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
description = "Pyxels Nixvim";
inputs = {
nixpkgs.follows = "nixvim/nixpkgs";
nixvim = {
url = "github:nix-community/nixvim";
inputs = {
flake-parts.follows = "flake-parts";
git-hooks.follows = "git-hooks";
home-manager.follows = "";
nix-darwin.follows = "";
};
};
flake-parts.url = "github:hercules-ci/flake-parts";
git-hooks = {
url = "github:cachix/git-hooks.nix";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = {
nixvim,
flake-parts,
git-hooks,
...
} @ inputs: let
config = import ./config; # import the module directly
in
flake-parts.lib.mkFlake {inherit inputs;} ({moduleWithSystem, ...}: {
systems = [
"x86_64-linux"
"aarch64-linux"
"x86_64-darwin"
"aarch64-darwin"
];
perSystem = {
pkgs,
system,
self',
...
}: let
nixvim-config = nixvim.legacyPackages.${system}.makeNixvimWithModule {
inherit pkgs;
module = config;
};
in {
checks = {
# Run `nix flake check .` to verify that the config is not broken
nixvim = nixvim.lib.${system}.check.mkTestDerivationFromNvim {
nvim = nixvim-config;
name = "A nixvim configuration";
};
git-hooks = import ./git-hooks.nix {inherit git-hooks system;};
};
devShells.default = pkgs.mkShell {
inherit (self'.checks.git-hooks) shellHook;
buildInputs = self'.checks.git-hooks.enabledPackages;
};
packages = {
inherit nixvim-config;
# Lets you run `nix run .` to start nixvim
default = nixvim-config;
};
};
flake = {
homeModules.default = moduleWithSystem (
{config} @ perSystem: _: {
imports = [./home-manager-module.nix];
nixvim-config.package = perSystem.config.packages.default;
}
);
nixosModules.default = moduleWithSystem (
{config} @ perSystem: _: {
imports = [./nixos-module.nix];
nixvim-config.package = perSystem.config.packages.default;
}
);
};
});
}