2024-08-31 17:48:38 +00:00
|
|
|
default:
|
|
|
|
@just --list
|
|
|
|
|
|
|
|
build:
|
2024-09-01 08:10:21 +00:00
|
|
|
@nix build .#nixosConfigurations.build-qcow2.config.system.build.qcow2
|
2024-08-31 17:48:38 +00:00
|
|
|
|
|
|
|
apply: build
|
|
|
|
#!/usr/bin/env sh
|
2024-09-01 08:10:21 +00:00
|
|
|
export NIXOS_IMAGE=$(nix path-info --quiet .#nixosConfigurations.build-qcow2.config.system.build.qcow2)/nixos.qcow2
|
2024-08-31 17:48:38 +00:00
|
|
|
export TF_VAR_image_path=$NIXOS_IMAGE
|
|
|
|
|
|
|
|
echo "Deploying $NIXOS_IMAGE"
|
|
|
|
tofu init
|
|
|
|
tofu apply
|
|
|
|
|
|
|
|
destroy:
|
|
|
|
#!/usr/bin/env sh
|
|
|
|
tofu destroy
|