add mkSystem and dev.nix

This commit is contained in:
uku 2023-11-14 17:36:02 +01:00
parent a261e122e6
commit 89f997e158
Signed by: uku
GPG key ID: 7D01D7B105E77166
3 changed files with 33 additions and 28 deletions

14
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;
};
}