9 lines
117 B
Nix
9 lines
117 B
Nix
{ mkShell, pkgs, ... }:
|
|
mkShell {
|
|
packages = with pkgs; [
|
|
nixfmt-rfc-style
|
|
nil
|
|
statix
|
|
manix
|
|
];
|
|
}
|