Makes template track nixos-unstable

Previously, tracked nixpkgs/main which almost guarantees lots of cache
misses and compiling from source.
This commit is contained in:
Larry May 2022-10-03 09:18:11 -04:00
parent 283b30a5c4
commit 493bd5e4f1

View file

@ -2,8 +2,11 @@
description = "Application packaged using poetry2nix";
inputs.flake-utils.url = "github:numtide/flake-utils";
inputs.nixpkgs.url = "github:NixOS/nixpkgs";
inputs.poetry2nix.url = "github:nix-community/poetry2nix";
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
inputs.poetry2nix = {
url = "github:nix-community/poetry2nix";
inputs.nixpkgs.follows = "nixpkgs";
};
outputs = { self, nixpkgs, flake-utils, poetry2nix }:
{