10 lines
206 B
Nix
10 lines
206 B
Nix
|
{ pkgs, config, ... }: {
|
||
|
|
||
|
# enable smooth font rendering
|
||
|
environment.sessionVariables = rec {
|
||
|
_JAVA_OPTIONS = "-Dawt.useSystemAAFontSettings=lcd";
|
||
|
};
|
||
|
|
||
|
programs.java.enable = true;
|
||
|
}
|