fix(flake): use nixvim's nixpkgs instead of our own

This ensures the `nixpkgs-unstable` we consume is tested against
`nixvim`.
This commit is contained in:
Jalil David Salamé Messina 2025-02-09 12:37:42 +01:00
parent 0964177420
commit 767e5f500a
Signed by: jalil
GPG key ID: F016B9E770737A0B
3 changed files with 28 additions and 27 deletions

View file

@ -3,10 +3,13 @@
# A helpful description of your flake
description = "My NixOS configuration";
# Trick renovate into accepting this lockfile (see https://github.com/renovatebot/renovate/issues/29721)
# "github:NixOS/nixpkgs/nixos-unstable"
# Flake inputs
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.11";
unstable.url = "github:NixOS/nixpkgs/nixos-unstable";
unstable.follows = "nixvim/nixpkgs";
# Lix
lix-module = {
url = "https://git.lix.systems/lix-project/nixos-module/archive/2.92.0.tar.gz";
@ -35,7 +38,6 @@
nixvim = {
url = "github:nix-community/nixvim";
inputs = {
nixpkgs.follows = "unstable";
home-manager.follows = "home-manager";
flake-parts.follows = "flake-parts";
treefmt-nix.follows = "treefmt-nix";