This commit is contained in:
2025-06-10 19:44:17 +02:00
commit 643d6ad96b
4 changed files with 101 additions and 0 deletions

29
flake.nix Normal file
View File

@@ -0,0 +1,29 @@
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
basecamp.url = "github:plul/basecamp";
basecamp.inputs.nixpkgs.follows = "nixpkgs";
};
outputs =
{ basecamp, nixpkgs, ... }:
{
devShells."x86_64-linux".default =
let
pkgs = import nixpkgs {
system = "x86_64-linux";
config.allowUnfree = true;
};
in
basecamp.mkShell pkgs {
packages = [
(pkgs.python3.withPackages (python-pkgs: [
# python-pkgs.drawsvg
# python-pkgs.ruff
# python-pkgs.jedi-language-server
]))
];
};
};
}