Update to nixos-unstable
This is necessary because a dependency of `favicons`, `sharp`, depends on a slightly newer version of libvips than what is available in nixos-20.09.
This commit is contained in:
parent
c1deced611
commit
94503f5f7d
8 changed files with 803 additions and 751 deletions
|
|
@ -3,12 +3,14 @@
|
|||
|
||||
inputs = {
|
||||
nixpkgs.url = "github:nixos/nixpkgs/nixos-20.09";
|
||||
nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable";
|
||||
flake-utils.url = "github:numtide/flake-utils";
|
||||
};
|
||||
|
||||
outputs = { self, nixpkgs, flake-utils }@inputs:
|
||||
outputs = { self, nixpkgs, nixpkgs-unstable, flake-utils }@inputs:
|
||||
flake-utils.lib.simpleFlake {
|
||||
inherit self nixpkgs;
|
||||
inherit self;
|
||||
nixpkgs = nixpkgs-unstable;
|
||||
name = "tlaternet-templates";
|
||||
|
||||
overlay = final: prev: {
|
||||
|
|
|
|||
Reference in a new issue