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