This site does not allow itself to be embedded. You can still read it on the original site — the toolbar below keeps your place in the directory.
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 supportedSystems = [ 'aarch64-linux' 'x86_64-linux' 'aarch64-darwin' 'x86_64-linux' ];…
Comments
Nothing yet. Say the first thing.
Sign in to join the conversation.