this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

build: add make target to format Nix

+43 -36
+1
Makefile
··· 30 30 cd test/e2e && go test 31 31 32 32 fmt: 33 + nixfmt flake.nix 33 34 yamlfmt \ 34 35 --exclude infra/modules/cluster/roles/secrets/vars/main.yml \ 35 36 --exclude infra/*/secrets.yaml \
+42 -36
flake.nix
··· 3 3 nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.05"; 4 4 }; 5 5 6 - outputs = { self, nixpkgs }: 7 - let 8 - supportedSystems = nixpkgs.lib.genAttrs [ 9 - "x86_64-linux" 10 - "aarch64-linux" 11 - ]; 12 - in 13 - { 14 - devShells = supportedSystems (system: { 15 - default = with nixpkgs.legacyPackages.${system}; mkShell { 16 - packages = [ 17 - age 18 - ansible 19 - ansible-lint 20 - gnumake 21 - go 22 - k3d 23 - kubectl 24 - openssh 25 - opentofu 26 - oras 27 - pre-commit 28 - shellcheck 29 - sops 30 - temporal-cli 31 - terragrunt 32 - wireguard-tools 33 - yamlfmt 34 - yamllint 6 + outputs = 7 + { self, nixpkgs }: 8 + let 9 + supportedSystems = nixpkgs.lib.genAttrs [ 10 + "x86_64-linux" 11 + "aarch64-linux" 12 + ]; 13 + in 14 + { 15 + devShells = supportedSystems (system: { 16 + default = 17 + with nixpkgs.legacyPackages.${system}; 18 + mkShell { 19 + packages = [ 20 + age 21 + ansible 22 + ansible-lint 23 + gnumake 24 + go 25 + k3d 26 + kubectl 27 + nixfmt-rfc-style 28 + openssh 29 + opentofu 30 + oras 31 + pre-commit 32 + shellcheck 33 + sops 34 + temporal-cli 35 + terragrunt 36 + wireguard-tools 37 + yamlfmt 38 + yamllint 35 39 36 - (python3.withPackages (p: with p; [ 37 - kubernetes 38 - ])) 39 - ]; 40 - }; 41 - }); 42 - }; 40 + (python3.withPackages ( 41 + p: with p; [ 42 + kubernetes 43 + ] 44 + )) 45 + ]; 46 + }; 47 + }); 48 + }; 43 49 }