49 lines
1.3 KiB
Nix
49 lines
1.3 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
{
|
|
home.packages = with pkgs; [
|
|
crawl
|
|
];
|
|
home.file.".crawlrc" = {
|
|
text = ''
|
|
# Character Creation Rules
|
|
# fully_random = false
|
|
# remember_name = false
|
|
weapon = viable
|
|
# species = viable
|
|
# background = viable
|
|
# Application Behavior Rules
|
|
restart_after_game = maybe
|
|
restart_after_save = false
|
|
view_max_width = 81
|
|
view_max_height = 21
|
|
dump_on_save = true
|
|
use_terminal_default_colours = true
|
|
# Menu Behavior Rules
|
|
easy_confirm = all
|
|
sort_menus = auto:3
|
|
assign_item_slot = backward
|
|
show_god_gift = yes
|
|
show_player_species = true
|
|
# Autopickup Behavior Rules
|
|
pickup_thrown = true
|
|
drop_disables_autopickup = true
|
|
autopickup_search = true
|
|
autopickup_starting_ammo = true
|
|
# Exploration Behavior Rules
|
|
explore_greedy = true
|
|
explore_greedy_visit = artefacts,glowing_items
|
|
# explore_greedy_visit += stacks
|
|
explore_stop = glowing_items,shops,altars,portals,branches,runed_doors
|
|
rest_wait_both = true
|
|
# Autofight Behavior Rules
|
|
auto_switch = true
|
|
autofight_fires = true
|
|
autofight_caught = true
|
|
fire_order_spell = attack
|
|
|
|
'';
|
|
};
|
|
|
|
}
|
|
|