nix-module-wrapper-manager-fds/shell.nix
Gabriel Arazas a994a0cbac wrapper-manager-fds: init
It's a prototype for now, yeah. It'll be improved.
2024-07-01 15:14:48 +08:00

11 lines
155 B
Nix

{ pkgs ? import <nixpkgs> { } }:
pkgs.mkShell {
inputsFrom = with pkgs; [ nix ];
packages = with pkgs; [
npins
treefmt
nixpkgs-fmt
];
}