From c7171b2c8fc5671cdc989c88aa8f959dac836a98 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 30 Oct 2013 18:16:30 +0100 Subject: [PATCH] Comment out nixos-gui It hasn't built in over 2 years. --- nixos/modules/installer/tools/tools.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/nixos/modules/installer/tools/tools.nix b/nixos/modules/installer/tools/tools.nix index 2c68ec5fe224..41c562a6f465 100644 --- a/nixos/modules/installer/tools/tools.nix +++ b/nixos/modules/installer/tools/tools.nix @@ -52,6 +52,7 @@ let inherit (config.system) nixosVersion nixosCodeName; }; + /* nixos-gui = pkgs.xulrunnerWrapper { launcher = "nixos-gui"; application = pkgs.stdenv.mkDerivation { @@ -71,10 +72,12 @@ let }; }; }; + */ in { + /* options = { installer.enableGraphicalTools = pkgs.lib.mkOption { @@ -87,6 +90,7 @@ in }; }; + */ config = { environment.systemPackages = @@ -96,7 +100,7 @@ in nixos-generate-config nixos-option nixos-version - ] ++ pkgs.lib.optional cfg.enableGraphicalTools nixos-gui; + ]; system.build = { inherit nixos-install nixos-generate-config nixos-option;