diff options
author | Vincent Ambo <tazjin@gmail.com> | 2018-05-01T13·22+0200 |
---|---|---|
committer | Vincent Ambo <tazjin@gmail.com> | 2018-05-01T13·22+0200 |
commit | f4d1bb966cae1562b2d7baba1759b25733213539 (patch) | |
tree | 18c9d76ffa37e395e2e338d6cac5635ce11270e6 | |
parent | 693f92731bd119bb83eae3e63ee26fa235433861 (diff) |
fix(config): Use OpenJDK instead of Oracle JDK
-rw-r--r-- | configuration.nix | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/configuration.nix b/configuration.nix index af5a21cc5ed5..8d1b1d4d034d 100644 --- a/configuration.nix +++ b/configuration.nix @@ -57,6 +57,8 @@ # Configure various other applications: programs = { java.enable = true; + java.package = pkgs.openjdk; + fish.enable = true; ssh.startAgent = true; }; |