summary refs log tree commit diff
path: root/nixos/modules/installer/tools
diff options
context:
space:
mode:
authorFranz Pletz <fpletz@fnordicwalking.de>2017-09-23 20:01:49 +0200
committerFranz Pletz <fpletz@fnordicwalking.de>2017-09-23 20:03:19 +0200
commit0f5cd17f2ca43bc69e912ad04b83892e946ca0cc (patch)
treeaddd339ae7a0c653807320de13e64b14a285ceff /nixos/modules/installer/tools
parent3d040f9305186651c0b791d368f4c7b8d2e398b3 (diff)
downloadnixlib-0f5cd17f2ca43bc69e912ad04b83892e946ca0cc.tar
nixlib-0f5cd17f2ca43bc69e912ad04b83892e946ca0cc.tar.gz
nixlib-0f5cd17f2ca43bc69e912ad04b83892e946ca0cc.tar.bz2
nixlib-0f5cd17f2ca43bc69e912ad04b83892e946ca0cc.tar.lz
nixlib-0f5cd17f2ca43bc69e912ad04b83892e946ca0cc.tar.xz
nixlib-0f5cd17f2ca43bc69e912ad04b83892e946ca0cc.tar.zst
nixlib-0f5cd17f2ca43bc69e912ad04b83892e946ca0cc.zip
nixos-generate-config: add programs options examples
Diffstat (limited to 'nixos/modules/installer/tools')
-rw-r--r--nixos/modules/installer/tools/nixos-generate-config.pl8
1 files changed, 7 insertions, 1 deletions
diff --git a/nixos/modules/installer/tools/nixos-generate-config.pl b/nixos/modules/installer/tools/nixos-generate-config.pl
index 3af76f898f9a..4ec48b773358 100644
--- a/nixos/modules/installer/tools/nixos-generate-config.pl
+++ b/nixos/modules/installer/tools/nixos-generate-config.pl
@@ -583,9 +583,15 @@ $bootLoaderConfig
   # List packages installed in system profile. To search by name, run:
   # \$ nix-env -qaP | grep wget
   # environment.systemPackages = with pkgs; [
-  #   wget
+  #   wget vim
   # ];
 
+  # Some programs need SUID wrappers, can be configured further or are
+  # started in user sessions.
+  # programs.bash.enableCompletion = true;
+  # programs.mtr.enable = true;
+  # programs.gnupg.agent = { enable = true; enableSSHSupport = true; };
+
   # List services that you want to enable:
 
   # Enable the OpenSSH daemon.