-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathflake.nix
137 lines (137 loc) · 4.24 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
description = "A nixvim configuration";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
nixvim.url = "github:nix-community/nixvim";
flake-parts.url = "github:hercules-ci/flake-parts";
rust-overlay.url = "github:oxalica/rust-overlay";
};
outputs = {
nixvim,
flake-parts,
rust-overlay,
...
} @ inputs:
flake-parts.lib.mkFlake {inherit inputs;} {
systems = [
"x86_64-linux"
"aarch64-linux"
"x86_64-darwin"
"aarch64-darwin"
];
perSystem = {system, ...}: let
overlays = [(import rust-overlay)];
nixvimLib = nixvim.lib.${system};
nixvim' = nixvim.legacyPackages.${system};
baseNixvimModule = {
inherit pkgs;
module = {pkgs, ...}: {
imports = [./config];
extraPackages = with pkgs; [sops];
};
extraSpecialArgs = {};
};
rustNixvimModule = {
inherit pkgs;
module = {pkgs, ...}: {
imports = [
./config
./config/rust
];
extraPackages = with pkgs; [
sops
rust-bin.stable.latest.default
];
};
extraSpecialArgs = {};
};
csharpNixvimModule = {
inherit pkgs;
module = {pkgs, ...}: {
imports = [
./config
./config/csharp
];
extraPackages = with pkgs; [sops];
};
extraSpecialArgs = {};
};
goNixvimModule = {
inherit pkgs;
module = {pkgs, ...}: {
imports = [
./config
./config/golang
];
extraPackages = with pkgs; [sops];
};
extraSpecialArgs = {};
};
pythonNixvimModule = {
inherit pkgs;
module = {pkgs, ...}: {
imports = [
./config
./config/python
];
extraPackages = with pkgs; [sops];
};
extraSpecialArgs = {};
};
javascriptNixvimModule = {
inherit pkgs;
module = {pkgs, ...}: {
imports = [
./config
./config/javascript
];
extraPackages = with pkgs; [sops];
};
extraSpecialArgs = {};
};
iacNixvimModule = {
inherit pkgs;
module = {pkgs, ...}: {
imports = [
./config
./config/iac
];
extraPackages = with pkgs; [sops ansible-lint];
};
extraSpecialArgs = {};
};
pkgs = import inputs.nixpkgs {
inherit system overlays;
config.allowUnfree = true;
};
baseNvim = nixvim'.makeNixvimWithModule baseNixvimModule;
rustNvim = nixvim'.makeNixvimWithModule rustNixvimModule;
csharpNvim = nixvim'.makeNixvimWithModule csharpNixvimModule;
goNvim = nixvim'.makeNixvimWithModule goNixvimModule;
pythonNvim = nixvim'.makeNixvimWithModule pythonNixvimModule;
javascriptNvim = nixvim'.makeNixvimWithModule javascriptNixvimModule;
iacNvim = nixvim'.makeNixvimWithModule iacNixvimModule;
in {
checks = {
# Run `nix flake check .` to verify that your config is not broken
default = nixvimLib.check.mkTestDerivationFromNixvimModule baseNixvimModule;
};
packages = {
# Lets you run `nix run .` to start nixvim
default = baseNvim;
# Lets you run `nix run .#rust` to start nixvim with Rust configuration
rust = rustNvim;
# Lets you run `nix run .#csharp` to start nixvim with C# configuration
csharp = csharpNvim;
# Lets you run `nix run .#golang` to start nixvim with Go configuration
golang = goNvim;
# Lets you run `nix run .#python` to start nixvim with Python configuration
python = pythonNvim;
# Lets you run `nix run .#javascript` to start nixvim with JS/TS configuration
javascript = javascriptNvim;
# Lets you run `nix run .#javascript` to start nixvim with IaC configuration
iac = iacNvim;
};
};
};
}