11 lines
171 B
Nix
11 lines
171 B
Nix
|
{ config, lib, pkgs, inputs, unstable, ... }:
|
||
|
|
||
|
{
|
||
|
environment.systemPackages = with unstable; [
|
||
|
kotlin
|
||
|
kotlin-native
|
||
|
kotlin-language-server
|
||
|
ktlint
|
||
|
];
|
||
|
}
|