13 lines
135 B
Nix
13 lines
135 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./nix-ld.nix
|
|
];
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
nil
|
|
nixfmt-rfc-style
|
|
];
|
|
}
|