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,
|
||||
...
|
||||
}: let
|
||||
inherit (channels.nixfiles) packages legacyPackages;
|
||||
inherit (channels.nixfiles) legacyPackages;
|
||||
in {
|
||||
tasks = {
|
||||
devShell.inputs = with packages.x86_64-linux; [
|
||||
devShell.inputs = with legacyPackages.x86_64-linux; [
|
||||
deploy-rs
|
||||
terraform tflint
|
||||
alejandra deadnix statix
|
||||
|
|
|
|||
|
|
@ -13,6 +13,7 @@ in
|
|||
{
|
||||
inherit inputs tree std pkgs formatter lib checks;
|
||||
legacyPackages = pkgs;
|
||||
packages = pkgs;
|
||||
}
|
||||
// systems
|
||||
// shells
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue