flake: use explicit input

This commit is contained in:
Bruno BELANYI 2021-07-20 20:23:54 +02:00
parent 117fb64075
commit f56712227e
2 changed files with 21 additions and 8 deletions

View file

@ -2,8 +2,19 @@
description = "Ambroisie's CV";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs";
futils.url = "github:numtide/flake-utils";
futils = {
type = "github";
owner = "numtide";
repo = "flake-utils";
ref = "master";
};
nixpkgs = {
type = "github";
owner = "NixOS";
repo = "nixpkgs";
ref = "nixpkgs-unstable";
};
};
outputs = { self, nixpkgs, futils } @ inputs: