added example shell command to devshell

This commit is contained in:
Storm
2025-03-29 21:34:14 +01:00
parent 8fa2d24431
commit 869ed6a1e6
+14
View File
@@ -54,6 +54,20 @@
value = "experimental-features = nix-command flakes";
}
];
commands = [
{
name = "fmt";
help = "format nix code (using alejandra)";
command = "nix fmt";
category = "nix";
}
{
name = "lint";
help = "lint go code";
command = "gofmt";
category = "golang";
}
];
};
};
};