moved java to core/

This commit is contained in:
Sven Vogel 2023-12-14 21:55:48 +01:00
parent 91536809c2
commit 932ab66aad
2 changed files with 10 additions and 0 deletions

View File

@ -1,5 +1,6 @@
{
imports = [
./java.nix
./dotnet.nix
./printing.nix
];

9
core/java.nix Normal file
View File

@ -0,0 +1,9 @@
{ pkgs, config, ... }: {
# enable smooth font rendering
environment.sessionVariables = rec {
_JAVA_OPTIONS = "-Dawt.useSystemAAFontSettings=lcd";
};
programs.java.enable = true;
}