Skip to content

Instantly share code, notes, and snippets.

View andirkh's full-sized avatar
馃挭
do our very best to produce software we can be proud of

Andi R. Hermawan andirkh

馃挭
do our very best to produce software we can be proud of
  • 銈广儵銉愩儰 (娉楁按)
View GitHub Profile
@andirkh
andirkh / shell.nix
Created February 17, 2024 13:55 — forked from glendmaatita/shell.nix
OnXP Python Web Development
let
nixpkgs = fetchTarball "https://github.com/NixOS/nixpkgs/tarball/nixos-23.11";
pkgs = import nixpkgs { config = { allowUnfree = true; }; overlays = []; };
git = pkgs.git.overrideAttrs (oldAttrs: rec {
version = "2.42.0";
});
podman = pkgs.podman.overrideAttrs (oldAttrs: rec {
version = "4.7.2";