feat: use different nixpkgs

This commit is contained in:
Youwen Wu 2024-08-24 22:17:41 -07:00
parent b4be742668
commit d3c24e0adc
Signed by: youwen5
GPG key ID: 865658ED1FE61EC3
2 changed files with 8 additions and 9 deletions

View file

@ -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"
}

View file

@ -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 = {