-
Notifications
You must be signed in to change notification settings - Fork 4
/
flake.nix
74 lines (65 loc) · 1.88 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
{
description = "Caddy Gateway";
inputs = {
flake-parts = {
url = "github:hercules-ci/flake-parts";
inputs.nixpkgs-lib.follows = "nixpkgs";
};
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
treefmt-nix = {
url = "github:numtide/treefmt-nix";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = {...} @ inputs:
inputs.flake-parts.lib.mkFlake {inherit inputs;} {
systems = ["aarch64-darwin" "aarch64-linux" "x86_64-darwin" "x86_64-linux"];
imports = [
inputs.treefmt-nix.flakeModule
];
perSystem = {system, ...}: let
pkgs = import inputs.nixpkgs {inherit system;};
in {
devShells.default = pkgs.mkShell {
buildInputs = with pkgs; [
go_1_22
gofumpt
golangci-lint
gotools
kubectl
kubernetes-controller-tools
kustomize
operator-sdk
];
};
treefmt = {
projectRootFile = "flake.nix";
programs = {
# Enable alejandra, a Nix formatter.
alejandra.enable = true;
# Enable deadnix, a Nix linter/formatter that removes un-used Nix code.
deadnix.enable = true;
# Enable gofumpt, a Go formatter.
gofumpt = {
enable = true;
extra = true;
};
# Enable prettier, a multipurpose formatter.
prettier = {
enable = true;
includes = [
"*.md"
];
};
# Enable shellcheck, a shell script linter.
shellcheck.enable = true;
# Enable shfmt, a shell script formatter.
shfmt = {
enable = true;
indent_size = 0; # 0 causes shfmt to use tabs
};
};
};
};
};
}