BROKEN: work thus far

This commit is contained in:
Arbion Halili
2025-07-14 21:09:08 +01:00
parent 4e4dbf52ec
commit 8799c288b0
34 changed files with 1516 additions and 497 deletions

View File

@@ -25,9 +25,22 @@
pkgs.rustc
pkgs.cargo
pkgs.basedpyright
pkgs.ruff
];
};
}
);
apps = forAllSystems (system:
let
pkgs = import nixpkgs { inherit system; };
in
{
python-lsp = {
type = "app";
program = "${pkgs.basedpyright}/bin/basedpyright-langserver";
};
}
);
};
}