-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathflake.nix
97 lines (86 loc) · 2.55 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
{
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 = inputs.nixpkgs.lib.systems.flakeExposed;
imports = [
inputs.treefmt-nix.flakeModule
];
# Per-system attributes.
#
# This generates `name`.${system} attrsets in a convinent way.
perSystem = {
pkgs,
system,
...
}: {
# Initialize pkgs ourselves.
_module.args.pkgs = import inputs.nixpkgs {inherit system;};
# Configure the default devShell with common development dependencies.
devShells.default = pkgs.mkShellNoCC {
buildInputs = with pkgs; [
go_1_23
gofumpt
golangci-lint
gotools
goreleaser
kubectl
kubernetes-controller-tools
kustomize
operator-sdk
];
};
treefmt = {
projectRootFile = "flake.nix";
programs = {
# Enable actionlint, a GitHub Actions static checker.
actionlint.enable = true;
# 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
};
# Enable yamlfmt, a YAML formatter.
yamlfmt = {
enable = true;
settings.formatter = {
type = "basic";
retain_line_breaks_single = true;
};
};
};
settings.global.excludes = [
".editorconfig"
"LICENSE"
];
};
};
};
}