# SPDX-FileCopyrightText: 2025 FreshlyBakedCake # # SPDX-License-Identifier: MIT let pins = import ./npins; nilla = import pins.nilla; in nilla.create ( { config, lib }: { config = { inputs = { nixpkgs = { src = pins.nixpkgs; }; }; shells.default = config.shells.python; shells.python = { # Declare what systems the shell can be used on. systems = [ "x86_64-linux" ]; # Define our shell environment. shell = { pkgs, mkShell, ... }: mkShell { packages = [ pkgs.python314 pkgs.black ]; }; }; }; } )