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:
Tristan Daniël Maat 2021-04-11 05:30:59 +01:00
parent c1deced611
commit 94503f5f7d
Signed by: tlater
GPG key ID: 49670FD774E43268
8 changed files with 803 additions and 751 deletions

View file

@ -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: {