9 lines
194 B
Nix
9 lines
194 B
Nix
|
{ pkgs, unstable, ... }: {
|
||
|
environment.systemPackages = with unstable; [
|
||
|
# Dwarf fortress
|
||
|
(dwarf-fortress-packages.dwarf-fortress-full.override {
|
||
|
enableFPS = true;
|
||
|
})
|
||
|
];
|
||
|
}
|