devos/shell.nix

22 lines
549 B
Nix
Raw Normal View History

2020-01-04 06:06:31 +01:00
{ pkgs ? import <nixpkgs> { } }:
let
configs = "${toString ./.}#nixosConfigurations";
buildIso = pkgs.writeShellScriptBin "build-iso" ''
nix build ${configs}.niximg.config.system.build.isoImage $@
'';
2020-07-31 06:17:28 +02:00
in
pkgs.mkShell {
2020-07-27 06:24:28 +02:00
name = "nixflk";
nativeBuildInputs = with pkgs; [ git git-crypt nixFlakes buildIso ];
2020-01-02 05:01:58 +01:00
shellHook = ''
mkdir -p secrets
2020-07-24 01:03:08 +02:00
PATH=${
pkgs.writeShellScriptBin "nix" ''
2020-08-02 06:23:35 +02:00
${pkgs.nixFlakes}/bin/nix --option experimental-features "nix-command flakes ca-references" "$@"
2020-07-24 01:03:08 +02:00
''
}/bin:$PATH
'';
2020-01-02 05:01:58 +01:00
}