mirror of
https://github.com/srid/nixos-config.git
synced 2026-05-11 17:36:07 +08:00
nix run nixpkgs-unstable#...
This commit is contained in:
parent
c3fa97556f
commit
78f33425f7
3 changed files with 22 additions and 1 deletions
17
flake.lock
generated
17
flake.lock
generated
|
|
@ -920,6 +920,22 @@
|
|||
"type": "github"
|
||||
}
|
||||
},
|
||||
"nixpkgs-unstable": {
|
||||
"locked": {
|
||||
"lastModified": 1744868846,
|
||||
"narHash": "sha256-5RJTdUHDmj12Qsv7XOhuospjAjATNiTMElplWnJE9Hs=",
|
||||
"owner": "NixOS",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "ebe4301cbd8f81c4f8d3244b3632338bbeb6d49c",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "NixOS",
|
||||
"ref": "nixpkgs-unstable",
|
||||
"repo": "nixpkgs",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"nixpkgs_2": {
|
||||
"locked": {
|
||||
"lastModified": 1731676054,
|
||||
|
|
@ -1131,6 +1147,7 @@
|
|||
"nixos-unified": "nixos-unified",
|
||||
"nixos-vscode-server": "nixos-vscode-server",
|
||||
"nixpkgs": "nixpkgs_4",
|
||||
"nixpkgs-unstable": "nixpkgs-unstable",
|
||||
"nixvim": "nixvim",
|
||||
"nuenv": "nuenv",
|
||||
"omnix": "omnix"
|
||||
|
|
|
|||
|
|
@ -15,6 +15,7 @@
|
|||
disko.inputs.nixpkgs.follows = "nixpkgs";
|
||||
agenix.url = "github:ryantm/agenix";
|
||||
nuenv.url = "github:hallettj/nuenv/writeShellApplication";
|
||||
nixpkgs-unstable.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
|
||||
|
||||
# Software inputs
|
||||
github-nix-ci.url = "github:juspay/github-nix-ci";
|
||||
|
|
|
|||
|
|
@ -19,7 +19,10 @@ in
|
|||
# package = pkgs.nixVersions.latest;
|
||||
|
||||
nixPath = [ "nixpkgs=${flake.inputs.nixpkgs}" ]; # Enables use of `nix-shell -p ...` etc
|
||||
registry.nixpkgs.flake = flake.inputs.nixpkgs; # Make `nix shell` etc use pinned nixpkgs
|
||||
registry = {
|
||||
nixpkgs.flake = flake.inputs.nixpkgs; # Make `nix shell` etc use pinned nixpkgs
|
||||
nixpkgs-unstable.flake = flake.inputs.nixpkgs-unstable;
|
||||
};
|
||||
|
||||
settings = {
|
||||
max-jobs = "auto";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue