Quick bits: basic flake.nix template

from blog kokada, | ↗ original
Sometimes I want a really basic flake.nix that has no dependencies except for nixpkgs itself, e.g.: I want to avoid flake-utils or any other dependency. So, here you go: { description = "Description"; inputs = { nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; }; outputs = { self, nixpkgs, ... }: let ...