nixos-generate-config: add programs options examples

This commit is contained in:
Franz Pletz 2017-09-23 20:01:49 +02:00
parent 3d040f9305
commit 0f5cd17f2c
No known key found for this signature in database
GPG Key ID: 846FDED7792617B4

View File

@ -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.