summary refs log tree commit diff
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2012-04-10 21:11:11 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2012-04-10 21:11:11 +0000
commitdccd99b5643acd26d61c907452ff772af181715b (patch)
treecab83eaa3a18692fc3cef6b7263808a0d010720e
parent907df082dc612f84d50acd98b7103edf6f2bbb70 (diff)
downloadnixpkgs-dccd99b5643acd26d61c907452ff772af181715b.tar
nixpkgs-dccd99b5643acd26d61c907452ff772af181715b.tar.gz
nixpkgs-dccd99b5643acd26d61c907452ff772af181715b.tar.bz2
nixpkgs-dccd99b5643acd26d61c907452ff772af181715b.tar.lz
nixpkgs-dccd99b5643acd26d61c907452ff772af181715b.tar.xz
nixpkgs-dccd99b5643acd26d61c907452ff772af181715b.tar.zst
nixpkgs-dccd99b5643acd26d61c907452ff772af181715b.zip
* Disable "nixos-gen-seccure-keys": it's not clear what it's for, it's
  not documented, and it doesn't seem to be used anywhere.

svn path=/nixos/trunk/; revision=33732
-rw-r--r--modules/config/system-path.nix1
-rw-r--r--modules/installer/tools/tools.nix4
2 files changed, 3 insertions, 2 deletions
diff --git a/modules/config/system-path.nix b/modules/config/system-path.nix
index ce27eb35dd9..9eab8dde473 100644
--- a/modules/config/system-path.nix
+++ b/modules/config/system-path.nix
@@ -49,7 +49,6 @@ let
       pkgs.perl
       pkgs.procps
       pkgs.rsync
-      pkgs.seccure
       pkgs.strace
       pkgs.sysklogd
       pkgs.sysvtools
diff --git a/modules/installer/tools/tools.nix b/modules/installer/tools/tools.nix
index ad9ea2d61dc..d2f54b27c73 100644
--- a/modules/installer/tools/tools.nix
+++ b/modules/installer/tools/tools.nix
@@ -35,10 +35,12 @@ let
     src = ./nixos-rebuild.sh;
   };
 
+  /*
   nixosGenSeccureKeys = makeProg {
     name = "nixos-gen-seccure-keys";
     src = ./nixos-gen-seccure-keys.sh;
   };
+  */
 
   nixosHardwareScan = makeProg {
     name = "nixos-hardware-scan";
@@ -120,7 +122,7 @@ in
         nixosInstall
         nixosRebuild
         nixosHardwareScan
-        nixosGenSeccureKeys
+        #nixosGenSeccureKeys
         nixosOption
         nixosVersion
       ] ++ pkgs.lib.optional cfg.enableGraphicalTools nixosGui;