2020-01-04 05:06:31 +00:00
|
|
|
{ pkgs ? import <nixpkgs> { } }:
|
2020-01-02 04:55:19 +00:00
|
|
|
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
|
2020-05-21 12:55:06 +00:00
|
|
|
sudo -E nix shell -vv ${configs}.${hostname}.${build}.toplevel -c switch-to-configuration $1
|
2020-01-02 04:55:19 +00:00
|
|
|
else
|
2020-05-21 12:55:06 +00:00
|
|
|
sudo -E nix shell -vv ${configs}.$1.${build}.toplevel -c switch-to-configuration $2
|
2020-01-02 04:55:19 +00:00
|
|
|
fi
|
|
|
|
'';
|
2020-01-04 05:06:31 +00:00
|
|
|
in pkgs.mkShell {
|
|
|
|
nativeBuildInputs = with pkgs; [ git git-crypt nixFlakes rebuild ];
|
2020-01-02 04:01:58 +00:00
|
|
|
|
2020-01-04 00:54:27 +00:00
|
|
|
shellHook = ''
|
|
|
|
mkdir -p secrets
|
|
|
|
'';
|
|
|
|
|
2020-01-02 04:01:58 +00:00
|
|
|
NIX_CONF_DIR = let
|
|
|
|
current = pkgs.lib.optionalString (builtins.pathExists /etc/nix/nix.conf)
|
|
|
|
(builtins.readFile /etc/nix/nix.conf);
|
|
|
|
|
|
|
|
nixConf = pkgs.writeTextDir "opt/nix.conf" ''
|
|
|
|
${current}
|
|
|
|
experimental-features = nix-command flakes ca-references
|
|
|
|
'';
|
2020-01-04 05:06:31 +00:00
|
|
|
in "${nixConf}/opt";
|
2020-01-02 04:01:58 +00:00
|
|
|
}
|