moved java to core/
This commit is contained in:
parent
91536809c2
commit
932ab66aad
|
@ -1,5 +1,6 @@
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
|
./java.nix
|
||||||
./dotnet.nix
|
./dotnet.nix
|
||||||
./printing.nix
|
./printing.nix
|
||||||
];
|
];
|
||||||
|
|
|
@ -0,0 +1,9 @@
|
||||||
|
{ pkgs, config, ... }: {
|
||||||
|
|
||||||
|
# enable smooth font rendering
|
||||||
|
environment.sessionVariables = rec {
|
||||||
|
_JAVA_OPTIONS = "-Dawt.useSystemAAFontSettings=lcd";
|
||||||
|
};
|
||||||
|
|
||||||
|
programs.java.enable = true;
|
||||||
|
}
|
Loading…
Reference in New Issue