nixos-configuration/hosts/pi4/development.nix

12 lines
179 B
Nix
Raw Normal View History

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