initial flake with clan cli and formating

This commit is contained in:
2025-07-11 11:16:22 +07:00
parent d11b0316d2
commit 610952acae
5 changed files with 351 additions and 1 deletions

12
shell.nix Normal file
View File

@@ -0,0 +1,12 @@
{ inputs, ... }:
{
perSystem =
{ system, ... }:
{
devshells.default = {
devshell = {
packages = [ inputs.clan-core.packages.${system}.clan-cli ];
};
};
};
}