blob: 0cde57abd2d772a374a050f10751c7f95ade3b42 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
{ pkgs, ... }:
{
nixfiles.modules = {
common.nix.allowedUnfreePackages = [
"cla-theme" # source-available
"dwarf-fortress" # proprietary
"fallout-ce" # source-available
"fallout2-ce" # source-available
];
games = {
lutris.enable = true;
steam.enable = true;
# steam-run.quirks = {
# blackIsleStudios = true;
# cryptOfTheNecrodancer = true;
# mountAndBladeWarband = false;
# };
# minecraft.client.enable = true;
};
};
hm.home.packages = with pkgs; [
# (crawl.override { tileMode = true; })
# (dwarf-fortress-packages.dwarf-fortress-full.override {
# dfVersion = "50.13";
# theme = "cla";
# enableIntro = false;
# enableFPS = true;
# })
# fallout-ce
# fallout2-ce
# gzdoom
# openmw
# openttd
# qzdl
# r2modman
# xonotic
vcmi
];
}
|