flake: simplify dev shell declaration
All checks were successful
flake / build (push) Successful in 10m2s
nightly build / build (push) Successful in 10m3s

Signed-off-by: Christoph Heiss <christoph@c8h4.io>
This commit is contained in:
Christoph Heiss 2024-08-16 16:24:39 +02:00
parent d5db7f1e73
commit d531c967f1
Signed by: c8h4
GPG key ID: 1538094429952F86

View file

@ -112,17 +112,9 @@
};
devShells.default = pkgs.mkShell {
inputsFrom = builtins.attrValues self.checks.${system};
nativeBuildInputs = with pkgs; [
cargo-expand
deadnix
nixfmt
nodePackages.prettier
rustToolchain
statix
xorg.libxcb
openssl
];
inputsFrom = (builtins.attrValues self.checks.${system})
++ [ treefmt.config.build.devShell ];
nativeBuildInputs = with pkgs; [ rustToolchain ];
};
});
}