mirror of
https://github.com/nix-community/home-manager
synced 2025-02-03 14:55:04 +01:00
6 lines
127 B
Nix
6 lines
127 B
Nix
|
{ pkgs ? import <nixpkgs> { } }:
|
||
|
|
||
|
pkgs.mkShell {
|
||
|
buildInputs = [ (pkgs.python311.withPackages (ps: with ps; [ black ])) ];
|
||
|
}
|