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