From d3c24e0adc3d633d08953ccee4d6a190f489fea3 Mon Sep 17 00:00:00 2001 From: Youwen Wu Date: Sat, 24 Aug 2024 22:17:41 -0700 Subject: [PATCH] feat: use different nixpkgs --- flake.lock | 11 +++++------ flake.nix | 6 +++--- 2 files changed, 8 insertions(+), 9 deletions(-) diff --git a/flake.lock b/flake.lock index db9c4c4..e89a167 100644 --- a/flake.lock +++ b/flake.lock @@ -170,16 +170,15 @@ }, "nixpkgs": { "locked": { - "lastModified": 1724224976, - "narHash": "sha256-Z/ELQhrSd7bMzTO8r7NZgi9g5emh+aRKoCdaAv5fiO0=", - "owner": "nixos", + "lastModified": 1724558323, + "narHash": "sha256-uPXidysk1BXSayGzpxDW8JUgGvLWS+L1CTlBV3xcQB4=", + "owner": "NixOS", "repo": "nixpkgs", - "rev": "c374d94f1536013ca8e92341b540eba4c22f9c62", + "rev": "ba0c72cea47a45556ccd5bc566433bd1242a0f93", "type": "github" }, "original": { - "owner": "nixos", - "ref": "nixos-unstable", + "owner": "NixOS", "repo": "nixpkgs", "type": "github" } diff --git a/flake.nix b/flake.nix index c5adebc..ffec5d6 100644 --- a/flake.nix +++ b/flake.nix @@ -2,16 +2,16 @@ description = "Personal Neovim configuration."; inputs = { - nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; + nixpkgs.url = "github:NixOS/nixpkgs"; nixvim = { url = "github:nix-community/nixvim"; inputs.nixpkgs.follows = "nixpkgs"; }; }; - outputs = inputs @ { - nixpkgs, + outputs = { nixvim, + nixpkgs, ... }: { homeManagerModules.default = {