os/shell.nix

35 lines
797 B
Nix
Raw Normal View History

2020-01-04 05:06:31 +00:00
{ pkgs ? import <nixpkgs> { } }:
let
configs = "${toString ./.}#nixosConfigurations";
build = "config.system.build";
rebuild = pkgs.writeShellScriptBin "rebuild" ''
if [[ -z $1 ]]; then
2020-08-02 22:10:53 +00: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-31 04:17:28 +00:00
in
pkgs.mkShell {
2020-07-27 04:24:28 +00:00
name = "nixflk";
2020-08-02 22:10:53 +00:00
nativeBuildInputs = with pkgs; [
git
git-crypt
rebuild
];
2020-01-02 04:01:58 +00:00
shellHook = ''
mkdir -p secrets
if ! nix flake show; then
PATH=${
pkgs.writeShellScriptBin "nix" ''
${pkgs.nixFlakes}/bin/nix --option experimental-features "nix-command flakes ca-references" "$@"
''
}/bin:$PATH
fi
'';
2020-01-02 04:01:58 +00:00
}