RSSAmplifier

kokada · Dec 19, 2024

Quick bits: basic flake.nix template

0
Sign in to vote or save

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' ];…

Read on kokada.dev

Comments

Nothing yet. Say the first thing.

    Sign in to join the conversation.