os/shell.nix

32 lines
959 B
Nix
Raw Normal View History

2020-01-04 05:06:31 +00:00
{ pkgs ? import <nixpkgs> { } }:
let
configs = "${toString ./.}#nixosConfigurations";
hostname = pkgs.lib.fileContents /etc/hostname;
build = "config.system.build";
rebuild = pkgs.writeShellScriptBin "rebuild" ''
if [[ -z $1 ]]; then
echo "Usage: $0 [host] {switch|boot|test|iso}"
elif [[ $1 == "iso" ]]; then
nix build ${configs}.niximg.${build}.isoImage
elif [[ -z $2 ]]; then
sudo -E nix shell -vv ${configs}.${hostname}.${build}.toplevel -c switch-to-configuration $1
else
sudo -E nix shell -vv ${configs}.$1.${build}.toplevel -c switch-to-configuration $2
fi
'';
2020-07-31 04:17:28 +00:00
in
pkgs.mkShell {
2020-07-27 04:24:28 +00:00
name = "nixflk";
nativeBuildInputs = with pkgs; [ git git-crypt nixFlakes rebuild ];
2020-01-02 04:01:58 +00:00
shellHook = ''
mkdir -p secrets
2020-07-23 23:03:08 +00:00
PATH=${
pkgs.writeShellScriptBin "nix" ''
2020-08-02 04:23:35 +00:00
${pkgs.nixFlakes}/bin/nix --option experimental-features "nix-command flakes ca-references" "$@"
2020-07-23 23:03:08 +00:00
''
}/bin:$PATH
'';
2020-01-02 04:01:58 +00:00
}