We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7957d5 commit 1b85d3aCopy full SHA for 1b85d3a
.envrc.example
@@ -1 +1 @@
1
-use nix # --arg isIdea true
+use nix # --arg isIdea true --arg nixpkgs <nixpkgs>
shell.nix
@@ -1,11 +1,9 @@
{
2
- pkgs ? import <nixpkgs> { },
3
- fenix ?
4
- import
5
- (fetchTarball "https://github.com/nix-community/fenix/archive/monthly.tar.gz")
6
- {
7
- inherit pkgs;
8
- },
+ nixpkgs ? fetchTarball "https://github.com/NixOS/nixpkgs/archive/nixos-25.05.tar.gz",
+ pkgs ? import nixpkgs { },
+ fenix ? import (fetchTarball "https://github.com/nix-community/fenix/archive/monthly.tar.gz") {
+ inherit pkgs;
+ },
9
isIdea ? false,
10
}:
11
pkgs.mkShell rec {
0 commit comments