2020-01-04 05:06:31 +00:00
|
|
|
{ pkgs ? import <nixpkgs> { } }:
|
2020-01-02 04:55:19 +00:00
|
|
|
let
|
|
|
|
configs = "${toString ./.}#nixosConfigurations";
|
|
|
|
|
2020-07-14 01:56:39 +00:00
|
|
|
buildIso = pkgs.writeShellScriptBin "build-iso" ''
|
2020-07-16 21:17:12 +00:00
|
|
|
nix build ${configs}.niximg.config.system.build.isoImage $@
|
2020-01-02 04:55:19 +00:00
|
|
|
'';
|
2020-01-04 05:06:31 +00:00
|
|
|
in pkgs.mkShell {
|
2020-07-14 01:56:39 +00:00
|
|
|
nativeBuildInputs = with pkgs; [ git git-crypt nixFlakes buildIso ];
|
2020-01-02 04:01:58 +00:00
|
|
|
|
2020-01-04 00:54:27 +00:00
|
|
|
shellHook = ''
|
|
|
|
mkdir -p secrets
|
2020-07-23 23:03:08 +00:00
|
|
|
PATH=${
|
|
|
|
pkgs.writeShellScriptBin "nix" ''
|
|
|
|
${pkgs.nixFlakes}/bin/nix --option experimental-features "nix-command flakes ca-references" $@
|
|
|
|
''
|
|
|
|
}/bin:$PATH
|
2020-01-04 00:54:27 +00:00
|
|
|
'';
|
2020-01-02 04:01:58 +00:00
|
|
|
}
|