mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 04:19:19 -08:00
feat: add packages as well as legacyPackages for outputs
This commit is contained in:
parent
7a17219c66
commit
9db06efcd8
2 changed files with 3 additions and 2 deletions
|
|
@ -4,10 +4,10 @@
|
||||||
channels,
|
channels,
|
||||||
...
|
...
|
||||||
}: let
|
}: let
|
||||||
inherit (channels.nixfiles) packages legacyPackages;
|
inherit (channels.nixfiles) legacyPackages;
|
||||||
in {
|
in {
|
||||||
tasks = {
|
tasks = {
|
||||||
devShell.inputs = with packages.x86_64-linux; [
|
devShell.inputs = with legacyPackages.x86_64-linux; [
|
||||||
deploy-rs
|
deploy-rs
|
||||||
terraform tflint
|
terraform tflint
|
||||||
alejandra deadnix statix
|
alejandra deadnix statix
|
||||||
|
|
|
||||||
|
|
@ -13,6 +13,7 @@ in
|
||||||
{
|
{
|
||||||
inherit inputs tree std pkgs formatter lib checks;
|
inherit inputs tree std pkgs formatter lib checks;
|
||||||
legacyPackages = pkgs;
|
legacyPackages = pkgs;
|
||||||
|
packages = pkgs;
|
||||||
}
|
}
|
||||||
// systems
|
// systems
|
||||||
// shells
|
// shells
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue