Update flake interface

This commit is contained in:
Eelco Dolstra 2019-08-30 11:48:43 +02:00
parent 2ba1f3c195
commit 63bcbc19cd
1 changed files with 4 additions and 4 deletions

View File

@ -1,15 +1,15 @@
{
name = "nixpkgs";
epoch = 201906;
epoch = 201909;
description = "A collection of packages for the Nix package manager";
outputs = inputs:
outputs = { self }:
let
pkgs = import ./. { system = "x86_64-linux"; };
jobs = import ./pkgs/top-level/release.nix {
nixpkgs = inputs.self;
nixpkgs = self;
};
in
{
@ -26,7 +26,7 @@
htmlDocs = {
nixpkgsManual = jobs.manual;
nixosManual = (import ./nixos/release-small.nix {
nixpkgs = inputs.self;
nixpkgs = self;
}).nixos.manual.x86_64-linux;
};