fix(report): building the wrong derivation for home-manager
All checks were successful
All checks were successful
Small typo that was breaking this script T-T: ```bash # Wrong: nix build --print-out-paths ".#homeConfigurations.$config.activationPackages" # Correct: nix build --print-out-paths ".#homeConfigurations.$config.config.home.activationPackage" ```
This commit is contained in:
parent
7d7a576f50
commit
6b0b78e496
1 changed files with 1 additions and 1 deletions
|
@ -51,7 +51,7 @@ pkgs_json() {
|
||||||
hm_configs_json() {
|
hm_configs_json() {
|
||||||
for config in $hmConfigs; do
|
for config in $hmConfigs; do
|
||||||
log "Building $config"
|
log "Building $config"
|
||||||
path=$(nix build --print-out-paths ".#homeConfigurations.$config.activationPackages")
|
path=$(nix build --print-out-paths ".#homeConfigurations.$config.config.home.activationPackage")
|
||||||
closure_size "$config" "$path"
|
closure_size "$config" "$path"
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue