oscuro/shell.nix

12 lines
129 B
Nix
Raw Normal View History

2023-06-02 15:32:53 +05:00
{ pkgs ? import <nixpkgs> { } }:
with pkgs;
mkShell {
buildInputs = [
nixpkgs-fmt
];
shellHook = ''
# ...
'';
}