mirror of
https://github.com/yshui/picom.git
synced 2024-11-03 04:33:49 -05:00
flake: specify a url for nixpkgs
nix-direnv keeps picking up nixpkgs from my local nix registry, which is super annoying because I have to manually ignore the change every time I use git. Signed-off-by: Yuxuan Shui <yshuiv7@gmail.com>
This commit is contained in:
parent
6c0f12db6e
commit
5d3640b79c
2 changed files with 4 additions and 4 deletions
|
@ -41,16 +41,15 @@
|
||||||
},
|
},
|
||||||
"nixpkgs": {
|
"nixpkgs": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1716451822,
|
"lastModified": 1719397110,
|
||||||
"narHash": "sha256-0lT5RVelqN+dgXWWneXvV5ufSksW0r0TDQi8O6U2+o8=",
|
"narHash": "sha256-rYGcPSy8hBx/0OJvHrtR50KGN9AR7GN/zXG4xOi5Dnc=",
|
||||||
"owner": "nixos",
|
"owner": "nixos",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "3305b2b25e4ae4baee872346eae133cf6f611783",
|
"rev": "c414599dfae92540ccc0c7d5d49f6cf6dc5b7fc8",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
"owner": "nixos",
|
"owner": "nixos",
|
||||||
"ref": "nixpkgs-unstable",
|
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
{
|
{
|
||||||
inputs = {
|
inputs = {
|
||||||
flake-utils.url = github:numtide/flake-utils;
|
flake-utils.url = github:numtide/flake-utils;
|
||||||
|
nixpkgs.url = github:nixos/nixpkgs;
|
||||||
git-ignore-nix = {
|
git-ignore-nix = {
|
||||||
url = github:hercules-ci/gitignore.nix/master;
|
url = github:hercules-ci/gitignore.nix/master;
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
|
|
Loading…
Reference in a new issue