os/shell.nix

36 lines
842 B
Nix
Raw Normal View History

{ pkgs ? import (import ./nixpkgs-compat.nix) { } }:
let
configs = "${toString ./.}#nixosConfigurations";
build = "config.system.build";
2020-12-25 22:14:56 -07:00
flk = pkgs.writeShellScriptBin "flk" ''
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
2020-12-25 22:14:56 -07:00
flk
nix-zsh-completions
2020-08-02 16:10:53 -06:00
];
2020-01-01 21:01:58 -07:00
shellHook = ''
mkdir -p secrets
2020-12-19 18:35:33 -07:00
if ! nix flake show &> /dev/null; then
PATH=${
pkgs.writeShellScriptBin "nix" ''
${pkgs.nixFlakes}/bin/nix --option experimental-features "nix-command flakes ca-references" "$@"
''
}/bin:$PATH
fi
'';
2020-01-01 21:01:58 -07:00
}