summary refs log tree commit diff
path: root/flake.nix
diff options
context:
space:
mode:
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/flake.nix b/flake.nix
index b4b126c9be0..002999fdf4c 100644
--- a/flake.nix
+++ b/flake.nix
@@ -5,7 +5,7 @@
 
   description = "A collection of packages for the Nix package manager";
 
-  provides = flakes:
+  outputs = inputs:
     let pkgs = import ./. { system = "x86_64-linux"; }; in
     {
       lib = (import ./lib) // {
@@ -13,7 +13,7 @@
       };
 
       checks.tarball = (import ./pkgs/top-level/release.nix {
-        nixpkgs = flakes.self;
+        nixpkgs = inputs.self;
       }).tarball;
 
       builders = {