os/shell.nix

34 lines
764 B
Nix
Raw Normal View History

2020-01-03 22:06:31 -07:00
{ pkgs ? import <nixpkgs> { } }:
let
configs = "${toString ./.}#nixosConfigurations";
build = "config.system.build";
rebuild = pkgs.writeShellScriptBin "rebuild" ''
if [[ -z $1 ]]; then
2020-08-02 16:10:53 -06:00
echo "Usage: $(basename $0) host {switch|boot|test|iso}"
elif [[ $1 == "iso" ]]; then
nix build ${configs}.niximg.${build}.isoImage
else
sudo nixos-rebuild --flake ".#$1" $2
fi
'';
2020-07-30 22:17:28 -06:00
in
pkgs.mkShell {
2020-07-26 22:24:28 -06:00
name = "nixflk";
2020-08-02 16:10:53 -06:00
nativeBuildInputs = with pkgs; [
git
git-crypt
nixFlakes
rebuild
];
2020-01-01 21:01:58 -07:00
shellHook = ''
mkdir -p secrets
2020-07-23 17:03:08 -06:00
PATH=${
pkgs.writeShellScriptBin "nix" ''
2020-08-01 22:23:35 -06:00
${pkgs.nixFlakes}/bin/nix --option experimental-features "nix-command flakes ca-references" "$@"
2020-07-23 17:03:08 -06:00
''
}/bin:$PATH
'';
2020-01-01 21:01:58 -07:00
}