LilleAila / projects

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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
    ]))
  ];
}

About

License:GNU General Public License v3.0


Languages

Language:Nix 65.4%Language:Haskell 33.2%Language:Shell 1.4%