Rename directory flake to flake-parts

This commit is contained in:
SebastianStork 2025-09-23 20:49:01 +02:00
parent 8cdb87769c
commit 121d7364f7
7 changed files with 6 additions and 6 deletions

13
flake-parts/dev-shell.nix Normal file
View file

@ -0,0 +1,13 @@
_: {
perSystem =
{ inputs', pkgs, ... }:
{
devShells.default = pkgs.mkShellNoCC {
packages = [
pkgs.just
pkgs.nh
inputs'.deploy-rs.packages.default
];
};
};
}