about summary refs log tree commit diff
path: root/hosts/phobos
diff options
context:
space:
mode:
authorManuel Palenzuela <manuelpalenzuelamerino@gmail.com>2022-06-20 18:14:28 +0200
committerBaitinq <manuelpalenzuelamerino@gmail.com>2022-06-20 18:14:28 +0200
commit8caba9164964224dd913786c88c685b1eb529296 (patch)
tree358ac2c244bd17ad2fe4b65e012ca5ff6fdb96eb /hosts/phobos
parentChange how the mkHost function is applied, generate set dynamically (diff)
downloadnixos-config-8caba9164964224dd913786c88c685b1eb529296.tar.gz
nixos-config-8caba9164964224dd913786c88c685b1eb529296.tar.bz2
nixos-config-8caba9164964224dd913786c88c685b1eb529296.zip
Move minecraft override to the base overlay
Diffstat (limited to '')
-rw-r--r--hosts/phobos/home.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/hosts/phobos/home.nix b/hosts/phobos/home.nix
index 4158316..a697850 100644
--- a/hosts/phobos/home.nix
+++ b/hosts/phobos/home.nix
@@ -1,14 +1,14 @@
 { config, lib, pkgs, inputs, user, hostname, secrets, ... }:
 {
   home.packages = with pkgs; [
-    (minecraft.override { jre = pkgs.jdk8; })
+    minecraft
     jetbrains.idea-community
     calibre
     qtcreator
     custom.anime-downloader
     custom.adl
     custom.trackma
-    kcc
     custom.kindlegen
+    kcc
   ];
 }