2020-01-04 08:06:31 +03:00
|
|
|
{ pkgs ? import <nixpkgs> { } }:
|
2020-01-02 07:55:19 +03:00
|
|
|
let
|
|
|
|
configs = "${toString ./.}#nixosConfigurations";
|
2020-08-03 00:24:00 +03:00
|
|
|
hostname = pkgs.lib.fileContents /etc/hostname;
|
|
|
|
build = "config.system.build";
|
2020-01-02 07:55:19 +03:00
|
|
|
|
2020-08-03 00:24:00 +03:00
|
|
|
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-01-02 07:55:19 +03:00
|
|
|
'';
|
2020-07-31 07:17:28 +03:00
|
|
|
in
|
|
|
|
pkgs.mkShell {
|
2020-07-27 07:24:28 +03:00
|
|
|
name = "nixflk";
|
2020-08-03 00:24:00 +03:00
|
|
|
nativeBuildInputs = with pkgs; [ git git-crypt nixFlakes rebuild ];
|
2020-01-02 07:01:58 +03:00
|
|
|
|
2020-01-04 03:54:27 +03:00
|
|
|
shellHook = ''
|
|
|
|
mkdir -p secrets
|
2020-07-24 02:03:08 +03:00
|
|
|
PATH=${
|
|
|
|
pkgs.writeShellScriptBin "nix" ''
|
2020-08-02 07:23:35 +03:00
|
|
|
${pkgs.nixFlakes}/bin/nix --option experimental-features "nix-command flakes ca-references" "$@"
|
2020-07-24 02:03:08 +03:00
|
|
|
''
|
|
|
|
}/bin:$PATH
|
2020-01-04 03:54:27 +03:00
|
|
|
'';
|
2020-01-02 07:01:58 +03:00
|
|
|
}
|