os/shell.nix

22 lines
547 B
Nix
Raw Normal View History

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