diff options
Diffstat (limited to 'users/grfn')
-rw-r--r-- | users/grfn/system/home/modules/games.nix | 2 | ||||
-rw-r--r-- | users/grfn/system/system/iso.nix | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/users/grfn/system/home/modules/games.nix b/users/grfn/system/home/modules/games.nix index 873182663020..5e2800389208 100644 --- a/users/grfn/system/home/modules/games.nix +++ b/users/grfn/system/home/modules/games.nix @@ -11,7 +11,7 @@ let theme = null; enableIntro = false; enableFPS = true; - enableDFHack = false; # Fails to build currently + enableDFHack = true; }); init = runCommand "init.txt" { } '' diff --git a/users/grfn/system/system/iso.nix b/users/grfn/system/system/iso.nix index 9fa8e7ec7e3b..398145f1cfab 100644 --- a/users/grfn/system/system/iso.nix +++ b/users/grfn/system/system/iso.nix @@ -11,6 +11,10 @@ let networking.useDHCP = false; networking.firewall.enable = false; networking.wireless.enable = lib.mkForce false; + + # TODO(grfn): enabling this (in the minimal profile) fails the iso build, + # since gtk+3 needs to be built which fails due to cairo without xlibs + environment.noXlibs = false; }; in (depot.third_party.nixos { |