move stuff to parts dir

This commit is contained in:
uku 2024-01-19 12:24:48 +01:00
parent a7b8dd7141
commit e868b5913f
Signed by: uku
GPG key ID: 7D01D7B105E77166
6 changed files with 10 additions and 5 deletions

14
parts/dev.nix Normal file
View file

@ -0,0 +1,14 @@
{
perSystem = {pkgs, ...}: {
devShells.default = pkgs.mkShell {
packages = with pkgs; [
alejandra
fzf
just
nil
];
};
formatter = pkgs.alejandra;
};
}