mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 20:39:18 -08:00
17 lines
269 B
Nix
17 lines
269 B
Nix
{
|
|
lib,
|
|
config,
|
|
channels,
|
|
...
|
|
}: let
|
|
inherit (channels.nixfiles) packages legacyPackages;
|
|
in {
|
|
tasks = {
|
|
devShell.inputs = with packages.x86_64-linux; [
|
|
deploy-rs
|
|
terraform tflint
|
|
alejandra deadnix statix
|
|
ssh-to-age
|
|
];
|
|
};
|
|
}
|