override nixpkgs inputs

This commit is contained in:
Tim Schubert 2021-07-22 20:03:48 +02:00
parent c08af9115a
commit 5208ff8b7e
Signed by: dadada
GPG key ID: EEB8D1CE62C4DFEA
2 changed files with 23 additions and 48 deletions

55
flake.lock generated
View file

@ -175,7 +175,9 @@
}, },
"home-manager": { "home-manager": {
"inputs": { "inputs": {
"nixpkgs": "nixpkgs" "nixpkgs": [
"nixpkgs"
]
}, },
"locked": { "locked": {
"lastModified": 1626841047, "lastModified": 1626841047,
@ -205,7 +207,9 @@
"explain-pause-mode": "explain-pause-mode", "explain-pause-mode": "explain-pause-mode",
"flake-utils": "flake-utils_2", "flake-utils": "flake-utils_2",
"nix-straight": "nix-straight", "nix-straight": "nix-straight",
"nixpkgs": "nixpkgs_2", "nixpkgs": [
"nixpkgs"
],
"nose": "nose", "nose": "nose",
"ob-racket": "ob-racket", "ob-racket": "ob-racket",
"org-mode": "org-mode", "org-mode": "org-mode",
@ -262,34 +266,6 @@
} }
}, },
"nixpkgs": { "nixpkgs": {
"locked": {
"lastModified": 1626046891,
"narHash": "sha256-Zt8saH+hAehXskW0iFAzk+iMillYoFBxvLReYNqGT9E=",
"path": "/nix/store/hv23pdsi6n7z96pkljv25lfrfh1mnzz7-source",
"rev": "d8f8f31af9d77a48220e4e8a301d1e79774cb7d2",
"type": "path"
},
"original": {
"id": "nixpkgs",
"type": "indirect"
}
},
"nixpkgs_2": {
"locked": {
"lastModified": 1624561540,
"narHash": "sha256-izJ2PYZMGMsSkg+e7c9A1x3t/yOLT+qzUM6WQsc2tqo=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "c6a049a3d32293b24c0f894a840872cf67fd7c11",
"type": "github"
},
"original": {
"id": "nixpkgs",
"ref": "nixpkgs-unstable",
"type": "indirect"
}
},
"nixpkgs_3": {
"locked": { "locked": {
"lastModified": 1626852498, "lastModified": 1626852498,
"narHash": "sha256-lOXUJvi0FJUXHTVSiC5qsMRtEUgqM4mGZpMESLuGhmo=", "narHash": "sha256-lOXUJvi0FJUXHTVSiC5qsMRtEUgqM4mGZpMESLuGhmo=",
@ -305,19 +281,6 @@
"type": "github" "type": "github"
} }
}, },
"nixpkgs_4": {
"locked": {
"lastModified": 1626046891,
"narHash": "sha256-Zt8saH+hAehXskW0iFAzk+iMillYoFBxvLReYNqGT9E=",
"path": "/nix/store/hv23pdsi6n7z96pkljv25lfrfh1mnzz7-source",
"rev": "d8f8f31af9d77a48220e4e8a301d1e79774cb7d2",
"type": "path"
},
"original": {
"id": "nixpkgs",
"type": "indirect"
}
},
"nose": { "nose": {
"flake": false, "flake": false,
"locked": { "locked": {
@ -337,7 +300,9 @@
"nvd": { "nvd": {
"inputs": { "inputs": {
"flake-utils": "flake-utils_3", "flake-utils": "flake-utils_3",
"nixpkgs": "nixpkgs_4" "nixpkgs": [
"nixpkgs"
]
}, },
"locked": { "locked": {
"lastModified": 1625773975, "lastModified": 1625773975,
@ -441,7 +406,7 @@
"home-manager": "home-manager", "home-manager": "home-manager",
"nix-doom-emacs": "nix-doom-emacs", "nix-doom-emacs": "nix-doom-emacs",
"nixos-hardware": "nixos-hardware", "nixos-hardware": "nixos-hardware",
"nixpkgs": "nixpkgs_3", "nixpkgs": "nixpkgs",
"nvd": "nvd" "nvd": "nvd"
} }
}, },

View file

@ -2,16 +2,26 @@
description = "dadada's nix flake"; description = "dadada's nix flake";
inputs = { inputs = {
emacs-overlay.url = github:nix-community/emacs-overlay; emacs-overlay = {
url = github:nix-community/emacs-overlay;
inputs.nixpkgs.follows = "nixpkgs";
};
flake-utils.url = github:numtide/flake-utils; flake-utils.url = github:numtide/flake-utils;
home-manager.url = github:nix-community/home-manager; home-manager = {
url = github:nix-community/home-manager;
inputs.nixpkgs.follows = "nixpkgs";
};
nix-doom-emacs = { nix-doom-emacs = {
url = github:vlaci/nix-doom-emacs; url = github:vlaci/nix-doom-emacs;
inputs.emacs-overlay.follows = "emacs-overlay"; inputs.emacs-overlay.follows = "emacs-overlay";
inputs.nixpkgs.follows = "nixpkgs";
}; };
nixos-hardware.url = github:NixOS/nixos-hardware/master; nixos-hardware.url = github:NixOS/nixos-hardware/master;
nixpkgs.url = github:NixOS/nixpkgs/nixos-unstable; nixpkgs.url = github:NixOS/nixpkgs/nixos-unstable;
nvd.url = git+https://gitlab.com/dadada_/nvd.git?ref=init-flake; nvd = {
url = git+https://gitlab.com/dadada_/nvd.git?ref=init-flake;
inputs.nixpkgs.follows = "nixpkgs";
};
}; };
outputs = { ... } @ args: import ./outputs.nix args; outputs = { ... } @ args: import ./outputs.nix args;