0xda157's wallpapers (NOT OC)

fix nixpkgs input

0xda157 03bf06a7 19e73f48

+2 -17
-15
flake.lock
··· 1 1 { 2 2 "nodes": { 3 - "nixpkgs": { 4 - "locked": { 5 - "lastModified": 1763618868, 6 - "narHash": "sha256-v5afmLjn/uyD9EQuPBn7nZuaZVV9r+JerayK/4wvdWA=", 7 - "owner": "NixOS", 8 - "repo": "nixpkgs", 9 - "rev": "a8d610af3f1a5fb71e23e08434d8d61a466fc942", 10 - "type": "github" 11 - }, 12 - "original": { 13 - "id": "nixpkgs", 14 - "type": "indirect" 15 - } 16 - }, 17 3 "nixpkgs-lib": { 18 4 "locked": { 19 5 "lastModified": 1763255503, ··· 31 17 }, 32 18 "root": { 33 19 "inputs": { 34 - "nixpkgs": "nixpkgs", 35 20 "nixpkgs-lib": "nixpkgs-lib" 36 21 } 37 22 }
+2 -2
flake.nix
··· 4 4 }; 5 5 6 6 outputs = 7 - { nixpkgs, ... }: 7 + { nixpkgs-lib, ... }: 8 8 let 9 - inherit (nixpkgs) lib; 9 + inherit (nixpkgs-lib) lib; 10 10 in 11 11 lib.mapAttrs' (name: _type: lib.nameValuePair (lib.removeSuffix ".webp" name) ./images/${name}) ( 12 12 builtins.readDir ./images