this repo has no description
0
fork

Configure Feed

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

build: remove flake-utils dependency

Khue Doan bfa5e70b 38f7d894

+36 -66
-34
flake.lock
··· 1 1 { 2 2 "nodes": { 3 - "flake-utils": { 4 - "inputs": { 5 - "systems": "systems" 6 - }, 7 - "locked": { 8 - "lastModified": 1731533236, 9 - "narHash": "sha256-l0KFg5HjrsfsO/JpG+r7fRrqm12kzFHyUHqHCVpMMbI=", 10 - "owner": "numtide", 11 - "repo": "flake-utils", 12 - "rev": "11707dc2f618dd54ca8739b309ec4fc024de578b", 13 - "type": "github" 14 - }, 15 - "original": { 16 - "owner": "numtide", 17 - "repo": "flake-utils", 18 - "type": "github" 19 - } 20 - }, 21 3 "nixpkgs": { 22 4 "locked": { 23 5 "lastModified": 1748162331, ··· 36 18 }, 37 19 "root": { 38 20 "inputs": { 39 - "flake-utils": "flake-utils", 40 21 "nixpkgs": "nixpkgs" 41 - } 42 - }, 43 - "systems": { 44 - "locked": { 45 - "lastModified": 1681028828, 46 - "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", 47 - "owner": "nix-systems", 48 - "repo": "default", 49 - "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", 50 - "type": "github" 51 - }, 52 - "original": { 53 - "owner": "nix-systems", 54 - "repo": "default", 55 - "type": "github" 56 22 } 57 23 } 58 24 },
+36 -32
flake.nix
··· 1 1 { 2 2 inputs = { 3 3 nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.05"; 4 - flake-utils.url = "github:numtide/flake-utils"; 5 4 }; 6 5 7 - outputs = { self, nixpkgs, flake-utils }: 8 - flake-utils.lib.eachDefaultSystem (system: 9 - with nixpkgs.legacyPackages.${system}; 10 - { 11 - devShells.default = mkShell { 12 - packages = [ 13 - age 14 - ansible 15 - ansible-lint 16 - gnumake 17 - go 18 - k3d 19 - kubectl 20 - openssh 21 - opentofu 22 - oras 23 - pre-commit 24 - shellcheck 25 - sops 26 - temporal-cli 27 - terragrunt 28 - wireguard-tools 29 - yamlfmt 30 - yamllint 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 31 35 32 - (python3.withPackages (p: with p; [ 33 - kubernetes 34 - ])) 35 - ]; 36 - }; 37 - } 38 - ); 36 + (python3.withPackages (p: with p; [ 37 + kubernetes 38 + ])) 39 + ]; 40 + }; 41 + }); 42 + }; 39 43 }