From dccd99b5643acd26d61c907452ff772af181715b Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 10 Apr 2012 21:11:11 +0000 Subject: [PATCH] * 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 --- modules/config/system-path.nix | 1 - modules/installer/tools/tools.nix | 4 +++- 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;