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