this repo has no description
0
fork

Configure Feed

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

build: remove unnecessary nixpkgs from flake-parts

+13 -15
+3 -13
flake.lock
··· 59 59 }, 60 60 "flake-parts": { 61 61 "inputs": { 62 - "nixpkgs-lib": "nixpkgs-lib" 62 + "nixpkgs-lib": [ 63 + "nixpkgs" 64 + ] 63 65 }, 64 66 "locked": { 65 67 "lastModified": 1717285511, ··· 89 91 "ref": "nixos-unstable", 90 92 "repo": "nixpkgs", 91 93 "type": "github" 92 - } 93 - }, 94 - "nixpkgs-lib": { 95 - "locked": { 96 - "lastModified": 1717284937, 97 - "narHash": "sha256-lIbdfCsf8LMFloheeE6N31+BMIeixqyQWbSr2vk79EQ=", 98 - "type": "tarball", 99 - "url": "https://github.com/NixOS/nixpkgs/archive/eb9ceca17df2ea50a250b6b27f7bf6ab0186f198.tar.gz" 100 - }, 101 - "original": { 102 - "type": "tarball", 103 - "url": "https://github.com/NixOS/nixpkgs/archive/eb9ceca17df2ea50a250b6b27f7bf6ab0186f198.tar.gz" 104 94 } 105 95 }, 106 96 "root": {
+10 -2
flake.nix
··· 23 23 }; 24 24 25 25 # Flake helper for better organization with modules. 26 - flake-parts.url = "github:hercules-ci/flake-parts"; 26 + flake-parts = { 27 + url = "github:hercules-ci/flake-parts"; 28 + inputs.nixpkgs-lib.follows = "nixpkgs"; 29 + }; 27 30 28 31 # For creating a universal `nix fmt` 29 32 treefmt-nix = { ··· 38 41 ... 39 42 }: 40 43 flake-parts.lib.mkFlake {inherit inputs;} { 41 - systems = ["aarch64-linux" "x86_64-linux" "aarch64-darwin" "x86_64-darwin"]; 44 + systems = [ 45 + "aarch64-darwin" 46 + "aarch64-linux" 47 + "x86_64-darwin" 48 + "x86_64-linux" 49 + ]; 42 50 43 51 imports = [ 44 52 flake-parts.flakeModules.easyOverlay