Skip to content

Latest commit

 

History

History
24 lines (22 loc) · 478 Bytes

readme.md

File metadata and controls

24 lines (22 loc) · 478 Bytes

Small programming projects

Some small projects organized by year and month with development environments managed by nix and direnv

Devshell templates

Usage:

# .envrc
use flake github:LilleAila/projects#nix
use flake github:LilleAila/projects#python
use nix
# shell.nix
{ pkgs ? import <nixpkgs> {} }: with pkgs; mkShell {
  nativeBuildInputs = [
    (python311.withPackages (ps: with ps; [
      matplotlib
      numpy
      tkinter
    ]))
  ];
}