mirror of
https://github.com/vale981/fibre_walk_project_code
synced 2025-03-04 17:31:39 -05:00
17 lines
351 B
Nix
17 lines
351 B
Nix
{ pkgs, lib, config, inputs, ... }:
|
|
|
|
{
|
|
# https://devenv.sh/basics/
|
|
env.GREET = "devenv";
|
|
|
|
# https://devenv.sh/packages/
|
|
packages = with pkgs; [ pkgs.git pyright ruff python3Packages.matplotlib python3Packages.tkinter ];
|
|
|
|
languages.python = {
|
|
enable = true;
|
|
poetry = {
|
|
enable = true;
|
|
activate.enable = true;
|
|
};
|
|
};
|
|
}
|