nethack.nix 281 B

12345678910111213
  1. { pkgs, ... }:
  2. {
  3. home = {
  4. file.".nethackrc".text = ''
  5. OPTIONS=color,msg_window:full,symset:curses,time
  6. OPTIONS=gender:random,!legacy,number_pad:1
  7. OPTIONS=pickup_burden:unencumbered,pickup_types:$?!/="+
  8. '';
  9. packages = with pkgs; [ nethack ];
  10. };
  11. }