Difference between revisions of "Chess"

From NixOS Wiki
Jump to: navigation, search
(Add GNOME Chess)
(Add stickfish as a gnome-chess dependency)
Line 12: Line 12:
 
     gnome-chess
 
     gnome-chess
 
     gnuchess
 
     gnuchess
 +
    stockfish
 
   ];
 
   ];
 
}
 
}
 
</syntaxHighlight>
 
</syntaxHighlight>

Revision as of 22:44, 7 August 2025

Playing Chess on NixOS

Lucas Chess is not packaged for NixOS yet (see nixpkgs#303420).

For GNOME Chess, if you want to play against the computer, you need to install a chess engine in addition. According to the application developer, this can be GNU Chess or Stockfish, but the engines will always win, ruthlessly, which may be disturbing (see gnome-chess#94).

{ pkgs, ... }:

{
  environment.systemPackages = with pkgs; [
    gnome-chess
    gnuchess
    stockfish
  ];
}