pkgs: comma: rename 'COMMA_{,NIX}PKGS_FLAKE'
All checks were successful
ci/woodpecker/push/check Pipeline was successful

This aligns with the rust implementation of this tool [1].

[1]: 17a4f33849
This commit is contained in:
Bruno BELANYI 2023-10-12 15:19:44 +00:00
parent ce19887f77
commit 032bc89779
2 changed files with 2 additions and 2 deletions

View file

@ -23,7 +23,7 @@ in
];
home.sessionVariables = {
COMMA_PKGS_FLAKE = cfg.pkgsFlake;
COMMA_NIXPKGS_FLAKE = cfg.pkgsFlake;
};
};
}

View file

@ -30,4 +30,4 @@ if [ -z "$PROGRAM" ]; then
exit 1
fi
nix shell "${COMMA_PKGS_FLAKE:-nixpkgs}#$PROGRAM" -c "$@"
nix shell "${COMMA_NIXPKGS_FLAKE:-nixpkgs}#$PROGRAM" -c "$@"