mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-10 04:49:19 -08:00
17 lines
284 B
Nix
17 lines
284 B
Nix
{channels, ...}: let
|
|
inherit (channels.nixfiles) legacyPackages;
|
|
in {
|
|
tasks = {
|
|
devShell.inputs = with legacyPackages.x86_64-linux; [
|
|
deploy-rs
|
|
terraform
|
|
lix
|
|
tflint
|
|
alejandra
|
|
deadnix
|
|
statix
|
|
cachix
|
|
ssh-to-age
|
|
];
|
|
};
|
|
}
|