about summary refs log tree commit diff
path: root/nixos/modules
diff options
context:
space:
mode:
authorDomen Kožar <domen@dev.si>2015-02-08 10:41:01 +0100
committerDomen Kožar <domen@dev.si>2015-02-08 10:47:58 +0100
commitb83433cdd1e5c1122bb7bd03cce5bc89bd22dcbb (patch)
tree39e9cef7fa09e333bacdf3c7c1a77f2e99d2087a /nixos/modules
parent19c359ce2a2aa45a6443a5a5067a6cdbd7a9779b (diff)
downloadnixlib-b83433cdd1e5c1122bb7bd03cce5bc89bd22dcbb.tar
nixlib-b83433cdd1e5c1122bb7bd03cce5bc89bd22dcbb.tar.gz
nixlib-b83433cdd1e5c1122bb7bd03cce5bc89bd22dcbb.tar.bz2
nixlib-b83433cdd1e5c1122bb7bd03cce5bc89bd22dcbb.tar.lz
nixlib-b83433cdd1e5c1122bb7bd03cce5bc89bd22dcbb.tar.xz
nixlib-b83433cdd1e5c1122bb7bd03cce5bc89bd22dcbb.tar.zst
nixlib-b83433cdd1e5c1122bb7bd03cce5bc89bd22dcbb.zip
Remove gui (see #6207), use nixui instead
Diffstat (limited to 'nixos/modules')
-rw-r--r--nixos/modules/installer/tools/tools.nix37
1 files changed, 0 insertions, 37 deletions
diff --git a/nixos/modules/installer/tools/tools.nix b/nixos/modules/installer/tools/tools.nix
index 2c796250a982..63d2077fbe19 100644
--- a/nixos/modules/installer/tools/tools.nix
+++ b/nixos/modules/installer/tools/tools.nix
@@ -53,46 +53,9 @@ let
     inherit (config.system) nixosVersion nixosCodeName;
   };
 
-  /*
-  nixos-gui = pkgs.xulrunnerWrapper {
-    launcher = "nixos-gui";
-    application = pkgs.stdenv.mkDerivation {
-      name = "nixos-gui";
-      buildCommand = ''
-        cp -r "$gui" "$out"
-
-        # Do not force the copy if the file exists in the sources (this
-        # happens for developpers)
-        test -e "$out/chrome/content/jquery-1.5.2.js" ||
-          cp -f "$jquery" "$out/chrome/content/jquery-1.5.2.js"
-      '';
-      gui = lib.cleanSource "${modulesPath}/../gui";
-      jquery = pkgs.fetchurl {
-        url = http://code.jquery.com/jquery-1.5.2.min.js;
-        sha256 = "8f0a19ee8c606b35a10904951e0a27da1896eafe33c6e88cb7bcbe455f05a24a";
-      };
-    };
-  };
-  */
-
 in
 
 {
-  /*
-  options = {
-
-    installer.enableGraphicalTools = mkOption {
-      default = false;
-      type = types.bool;
-      example = true;
-      description = ''
-        Enable the installation of graphical tools.
-      '';
-    };
-
-  };
-  */
-
   config = {
     environment.systemPackages =
       [ nixos-build-vms