os/shell.nix

21 lines
547 B
Nix
Raw Normal View History

2020-01-04 05:06:31 +00:00
{ pkgs ? import <nixpkgs> { } }:
let
configs = "${toString ./.}#nixosConfigurations";
buildIso = pkgs.writeShellScriptBin "build-iso" ''
nix build ${configs}.niximg.config.system.build.isoImage $@
'';
2020-01-04 05:06:31 +00:00
in pkgs.mkShell {
2020-07-27 04:24:28 +00:00
name = "nixflk";
nativeBuildInputs = with pkgs; [ git git-crypt nixFlakes buildIso ];
2020-01-02 04:01:58 +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-02 04:01:58 +00:00
}