feat: initialize project

This commit is contained in:
2026-08-28 13:41:18 +02:00
commit 3e4772014e
11 changed files with 873 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
{ pkgs, ... }: {
packages = with pkgs; [
tombi
bacon
];
languages.rust = {
enable = true;
toolchainFile = ./rust-toolchain.toml;
lld.enable = true;
lsp.enable = true;
};
}