12 lines
179 B
Nix
12 lines
179 B
Nix
{ pkgs, lib, ... }:
|
|
|
|
{
|
|
imports = [
|
|
(lib.custom.relativeToRoot "shared/modules/development/formatters.nix")
|
|
];
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
just
|
|
];
|
|
}
|