init repo

This commit is contained in:
ulic-youthlic 2025-04-29 18:57:53 +08:00
commit 599a631c65
Signed by: youthlic
GPG key ID: 63E86C3C14A0D721
17 changed files with 943 additions and 0 deletions

33
flake.nix Normal file
View file

@ -0,0 +1,33 @@
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
};
outputs = {
nixpkgs,
flake-utils,
...
}:
flake-utils.lib.eachDefaultSystem (
system: let
pkgs = import nixpkgs {
inherit system;
config = {
supportCuda = true;
};
};
in {
devShells.default = pkgs.mkShell {
packages = with pkgs; [
jdk
gradle
kotlin-language-server
ktfmt
jdt-language-server
graph-easy
graphviz
];
};
}
);
}