9 lines
199 B
Nix
9 lines
199 B
Nix
{ pkgs, ... }:
|
|
let
|
|
package = with pkgs.dwarf-fortress-packages;
|
|
dwarf-fortress-full.override {
|
|
theme = themes.ironhand;
|
|
enableFPS = true;
|
|
};
|
|
in
|
|
{ home.packages = [ package ]; }
|