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
  • East Java, Indonesia
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";