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-01-02 04:01:58 +00:00
|
|
|
NIX_CONF_DIR = let
|
|
|
|
current = pkgs.lib.optionalString (builtins.pathExists /etc/nix/nix.conf)
|
|
|
|
(builtins.readFile /etc/nix/nix.conf);
|
|
|
|
|
|
|
|
nixConf = pkgs.writeTextDir "opt/nix.conf" ''
|
|
|
|
${current}
|
|
|
|
experimental-features = nix-command flakes ca-references
|
|
|
|
'';
|
2020-01-04 05:06:31 +00:00
|
|
|
in "${nixConf}/opt";
|
2020-01-02 04:01:58 +00:00
|
|
|
}
|