moved java to core/
This commit is contained in:
parent
91536809c2
commit
932ab66aad
|
@ -1,5 +1,6 @@
|
|||
{
|
||||
imports = [
|
||||
./java.nix
|
||||
./dotnet.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