From df7a6500e4fd4bd96ecfa3abe5c9ff70bc322844 Mon Sep 17 00:00:00 2001 From: Pedro Alves Date: Mon, 20 Feb 2023 11:14:07 +0000 Subject: [PATCH] add nixpkgs to flake inputs --- flake.lock | 18 ++++++++++-------- flake.nix | 1 + 2 files changed, 11 insertions(+), 8 deletions(-) diff --git a/flake.lock b/flake.lock index 7d9b473b..45396c65 100644 --- a/flake.lock +++ b/flake.lock @@ -24,11 +24,11 @@ }, "flake-utils": { "locked": { - "lastModified": 1667395993, - "narHash": "sha256-nuEHfE/LcWyuSWnS8t12N1wc105Qtau+/OdUAjtQ0rA=", + "lastModified": 1676283394, + "narHash": "sha256-XX2f9c3iySLCw54rJ/CZs+ZK6IQy7GXNY4nSOyu2QG4=", "owner": "numtide", "repo": "flake-utils", - "rev": "5aed5285a952e0b949eb3ba02c12fa4fcfef535f", + "rev": "3db36a8b464d0c4532ba1c7dda728f4576d6d073", "type": "github" }, "original": { @@ -39,16 +39,18 @@ }, "nixpkgs": { "locked": { - "lastModified": 1673606088, - "narHash": "sha256-wdYD41UwNwPhTdMaG0AIe7fE1bAdyHe6bB4HLUqUvck=", + "lastModified": 1676721149, + "narHash": "sha256-mN2EpTGxxVNnFZLoLWRwh6f7UWhXy4qE+wO2CZyrXps=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "37b97ae3dd714de9a17923d004a2c5b5543dfa6d", + "rev": "5f4e07deb7c44f27d498f8df9c5f34750acf52d2", "type": "github" }, "original": { - "id": "nixpkgs", - "type": "indirect" + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" } }, "poetry2nix": { diff --git a/flake.nix b/flake.nix index 5aa10fd6..92852b2a 100644 --- a/flake.nix +++ b/flake.nix @@ -2,6 +2,7 @@ description = "A neovim configuration system for NixOS"; inputs.flake-utils.url = "github:numtide/flake-utils"; + inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; inputs.beautysh.url = "github:lovesegfault/beautysh"; inputs.beautysh.inputs.nixpkgs.follows = "nixpkgs";