8 lines
191 B
Nix
8 lines
191 B
Nix
{inputs}: final: _: let
|
|
unstable = import inputs.nixpkgs-unstable {
|
|
inherit (final) system;
|
|
config.allowUnfree = true;
|
|
};
|
|
in {
|
|
inherit (unstable) jetbrains jetbrains-toolbox;
|
|
}
|