Compare commits

..

No commits in common. "23970d88512af4df674b3f19bdf26d1c969143d0" and "e9be8dfe428fc130fd357e641173a72388686c1a" have entirely different histories.

2 changed files with 7 additions and 4 deletions

View File

@ -38,11 +38,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1660305968, "lastModified": 1660162369,
"narHash": "sha256-r0X1pZCSEA6mzt5OuTA7nHuLmvnbkwgpFAh1iLIx4GU=", "narHash": "sha256-pZukMP4zCA1FaBg0xHxf7KdE/Nv/C5YbDID7h2L8O7A=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "c4a0efdd5a728e20791b8d8d2f26f90ac228ee8d", "rev": "3a11db5f408095b8f08b098ec2066947f4b72ce2",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@ -29,7 +29,10 @@
let let
system = "x86_64-linux"; system = "x86_64-linux";
pkgs = import pkgs { inherit system; }; pkgs = import pkgs {
inherit system;
config.allowUnfree = true;
};
lib = nixpkgs.lib; lib = nixpkgs.lib;