-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshell.nix
36 lines (34 loc) · 1.1 KB
/
shell.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# Shell for bootstrapping flake-enabled nix and home-manager, from any nix version
{ pkgs ? let
inherit (builtins) currentSystem pathExists fromJSON readFile;
nixpkgs =
if pathExists ./flake.lock
then
# If we have a lock, fetch locked nixpkgs
let
inherit ((fromJSON (readFile ./flake.lock)).nodes.nixpkgs) locked;
in
fetchTarball {
url = "https://github.com/nixos/nixpkgs/archive/${locked.rev}.tar.gz";
sha256 = locked.narHash;
}
else
# If not (probably because not flake-enabled), fetch nixos-unstable impurely
fetchTarball {
url = "https://github.com/nixos/nixpkgs/archive/nixos-unstable.tar.gz";
};
system = currentSystem;
overlays = [ ];
in
import nixpkgs { inherit system overlays; }
, ...
}:
let
# Enable experimental features without having to specify the argument
nix = pkgs.writeShellScriptBin "nix" ''
exec ${pkgs.nixFlakes}/bin/nix --experimental-features "nix-command flakes" "$@"
'';
in
pkgs.mkShell {
nativeBuildInputs = with pkgs; [ nix home-manager git ];
}