Skip to content

Commit 78f3342

Browse files
committed
nix run nixpkgs-unstable#...
1 parent c3fa975 commit 78f3342

File tree

3 files changed

+22
-1
lines changed

3 files changed

+22
-1
lines changed

flake.lock

+17
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
disko.inputs.nixpkgs.follows = "nixpkgs";
1616
agenix.url = "github:ryantm/agenix";
1717
nuenv.url = "github:hallettj/nuenv/writeShellApplication";
18+
nixpkgs-unstable.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
1819

1920
# Software inputs
2021
github-nix-ci.url = "github:juspay/github-nix-ci";

modules/nixos/shared/nix.nix

+4-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,10 @@ in
1919
# package = pkgs.nixVersions.latest;
2020

2121
nixPath = [ "nixpkgs=${flake.inputs.nixpkgs}" ]; # Enables use of `nix-shell -p ...` etc
22-
registry.nixpkgs.flake = flake.inputs.nixpkgs; # Make `nix shell` etc use pinned nixpkgs
22+
registry = {
23+
nixpkgs.flake = flake.inputs.nixpkgs; # Make `nix shell` etc use pinned nixpkgs
24+
nixpkgs-unstable.flake = flake.inputs.nixpkgs-unstable;
25+
};
2326

2427
settings = {
2528
max-jobs = "auto";

0 commit comments

Comments
 (0)