From e7d827bb321ad26a4562757c2e3adffc256f7f39 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Sun, 19 Jan 2025 15:06:59 +0100 Subject: [PATCH] flake.nix: follow nixpkgs-unstable instead of nixos-unstable --- README.md | 2 +- flake.lock | 18 +++++++++--------- flake.nix | 2 +- templates/simple/flake.nix | 2 +- 4 files changed, 12 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index f46acab0..a7102d18 100644 --- a/README.md +++ b/README.md @@ -89,7 +89,7 @@ If you have any question, please use the [discussions page](https://github.com/n > [!WARNING] > NixVim needs to be installed with a compatible nixpkgs version. -> This means that the `main` branch of NixVim requires to be installed with `nixos-unstable`. +> This means that the `main` branch of NixVim requires to be installed with `nixpkgs-unstable`. > > If you want to use NixVim with nixpkgs 24.11 you should use the `nixos-24.11` branch. diff --git a/flake.lock b/flake.lock index 778c28ac..e1a7e6c4 100644 --- a/flake.lock +++ b/flake.lock @@ -22,12 +22,12 @@ }, "flake-compat": { "locked": { - "lastModified": 1696426674, - "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", - "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", - "revCount": 57, + "lastModified": 1733328505, + "narHash": "sha256-NeCCThCEP3eCl2l/+27kNNK7QrwZB1IJCrXfrbv5oqU=", + "rev": "ff81ac966bb2cae68946d5ed5fc4994f96d0ffec", + "revCount": 69, "type": "tarball", - "url": "https://api.flakehub.com/f/pinned/edolstra/flake-compat/1.0.1/018afb31-abd1-7bff-a5e4-cff7e18efb7a/source.tar.gz" + "url": "https://api.flakehub.com/f/pinned/edolstra/flake-compat/1.1.0/01948eb7-9cba-704f-bbf3-3fa956735b52/source.tar.gz" }, "original": { "type": "tarball", @@ -185,16 +185,16 @@ }, "nixpkgs": { "locked": { - "lastModified": 1737469691, - "narHash": "sha256-nmKOgAU48S41dTPIXAq0AHZSehWUn6ZPrUKijHAMmIk=", + "lastModified": 1737525964, + "narHash": "sha256-3wFonKmNRWKq1himW9N3TllbeGIHFACI5vmLpk6moF8=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "9e4d5190a9482a1fb9d18adf0bdb83c6e506eaab", + "rev": "5757bbb8bd7c0630a0cc4bb19c47e588db30b97c", "type": "github" }, "original": { "owner": "NixOS", - "ref": "nixos-unstable", + "ref": "nixpkgs-unstable", "repo": "nixpkgs", "type": "github" } diff --git a/flake.nix b/flake.nix index af9dfe7d..5e277310 100644 --- a/flake.nix +++ b/flake.nix @@ -2,7 +2,7 @@ description = "A neovim configuration system for NixOS"; inputs = { - nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; + nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; flake-parts = { url = "github:hercules-ci/flake-parts"; diff --git a/templates/simple/flake.nix b/templates/simple/flake.nix index ef20dfed..833b0d3d 100644 --- a/templates/simple/flake.nix +++ b/templates/simple/flake.nix @@ -2,7 +2,7 @@ description = "A nixvim configuration"; inputs = { - nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; + nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable"; nixvim.url = "github:nix-community/nixvim"; flake-parts.url = "github:hercules-ci/flake-parts"; };