Skip to content

Commit

Permalink
deps: add nixpkgs-master flake input
Browse files Browse the repository at this point in the history
  • Loading branch information
Fedir Zadniprovskyi authored and fedirz committed Jan 29, 2025
1 parent bfab415 commit 9c52c42
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 2 deletions.
19 changes: 18 additions & 1 deletion flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 12 additions & 1 deletion flake.nix
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
nixpkgs-master.url = "github:NixOS/nixpkgs/master";
flake-utils.url = "github:numtide/flake-utils";
};
outputs =
{ nixpkgs, flake-utils, ... }:
{
nixpkgs,
nixpkgs-master,
flake-utils,
...
}:
flake-utils.lib.eachDefaultSystem (
system:
let
Expand All @@ -13,6 +19,11 @@
config.allowUnfree = true;
};

pkgs-master = import nixpkgs-master {
inherit system;
config.allowUnfree = true;
};

linuxOnlyPkgs =
with pkgs;
if system == "x86_64-linux" then
Expand Down

0 comments on commit 9c52c42

Please sign in to comment.