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