-
Notifications
You must be signed in to change notification settings - Fork 0
/
flake.nix
58 lines (49 loc) · 1.42 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
{
description = "Developer Shell for Homelab";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
pre-commit-hooks.url = "github:cachix/pre-commit-hooks.nix";
};
outputs = {
self,
nixpkgs,
...
} @ inputs: let
supportedSystems = ["x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin"];
forAllSystems = nixpkgs.lib.genAttrs supportedSystems;
in {
checks = forAllSystems (system: {
pre-commit-check = inputs.pre-commit-hooks.lib.${system}.run {
src = ./.;
hooks = {
check-merge-conflicts.enable = true;
check-added-large-files.enable = true;
end-of-file-fixer.enable = true;
trim-trailing-whitespace.enable = true;
yamllint.enable = true;
pre-commit-hook-ensure-sops.enable = true;
};
};
});
devShells = forAllSystems (system: {
default = nixpkgs.legacyPackages.${system}.mkShell {
buildInputs = self.checks.${system}.pre-commit-check.enabledPackages;
shellHook = ''
export KUBECONFIG=~/.kube/config.personal
${self.checks.${system}.pre-commit-check.shellHook}
'';
packages = with nixpkgs.legacyPackages.${system}; [
fluxcd
kubernetes-helm
kompose
k9s
kubectl
sops
kustomize
cloudflared
go-task
];
};
});
};
}