minecraftClient: dropped multimc for polymc
This commit is contained in:
parent
8a8fae83e6
commit
60fcc73655
|
@ -35,7 +35,7 @@
|
|||
|
||||
nixpkgs.config = {
|
||||
allowUnfree = true;
|
||||
permittedInsecurePackages = ["openssl-1.0.2u" "minecraft"];
|
||||
permittedInsecurePackages = ["openssl-1.0.2u"];
|
||||
};
|
||||
|
||||
# Use the GRUB 2 boot loader.
|
||||
|
@ -98,12 +98,10 @@
|
|||
libgphoto2
|
||||
libreoffice-fresh # Libreoffice - fresh version
|
||||
lxmenu-data
|
||||
minecraft
|
||||
mkpasswd
|
||||
mp3info # MP3 tag editor / query tool
|
||||
mpd
|
||||
mtpfs
|
||||
multimc
|
||||
ncmpcpp
|
||||
nextcloud-client
|
||||
nvme-cli # NVM-Express user space tooling for Linux
|
||||
|
|
|
@ -7,6 +7,7 @@
|
|||
# Craige's Desktop Packages
|
||||
imports = [
|
||||
../profiles/ebooks.nix
|
||||
../profiles/minecraftClient.nix
|
||||
../profiles/spotify.nix # Spotify settings
|
||||
];
|
||||
|
||||
|
|
|
@ -7,12 +7,11 @@
|
|||
sources = import ../nix/sources.nix;
|
||||
unstable = import sources.nixpkgsUnstable {};
|
||||
in {
|
||||
nixpkgs.config = {
|
||||
allowUnfree = true;
|
||||
permittedInsecurePackages = ["minecraft"];
|
||||
};
|
||||
imports = [
|
||||
../profiles/minecraftClient.nix # Play Minecraft :-)
|
||||
];
|
||||
|
||||
# Retro Gaming Packages
|
||||
# Kid's Gaming Packages
|
||||
environment.systemPackages = with pkgs; [
|
||||
angband # A single-player roguelike dungeon exploration game
|
||||
discord # cross-platform voice and text chat for gamers
|
||||
|
@ -22,10 +21,8 @@ in {
|
|||
freedroidrpg # Isometric 3D RPG similar to game Diablo
|
||||
gcompris # Educational software suite, kids aged 2 to 10
|
||||
unstable.grapejuice # Simple Wine+Roblox management tool
|
||||
jre # Required by Minecraft (via multimc)
|
||||
#lincity_ng # City building game
|
||||
meritous # Action-adventure dungeon crawl game
|
||||
minecraft # Official launcher for Minecraft
|
||||
minetest # Infinite-world block sandbox game
|
||||
nethack-x11 # Rogue-like game
|
||||
#opendungeons # real time strategy game sharing game elements with the Dungeon Keeper series and Evil Genius
|
||||
|
|
16
profiles/minecraftClient.nix
Normal file
16
profiles/minecraftClient.nix
Normal file
|
@ -0,0 +1,16 @@
|
|||
# Minecraft client configuration for NixOS
|
||||
{
|
||||
pkgs,
|
||||
config,
|
||||
...
|
||||
}: {
|
||||
nixpkgs.config = {
|
||||
allowUnfree = true;
|
||||
permittedInsecurePackages = ["minecraft"];
|
||||
};
|
||||
environment.systemPackages = with pkgs; [
|
||||
jre # Required by Minecraft (via polymc)
|
||||
minecraft # Official launcher for Minecraft
|
||||
polymc # A free, open source launcher for Minecraft
|
||||
];
|
||||
}
|
Loading…
Reference in a new issue