From 3ab4e0f17f86e6f4ce5da117fa29a74368a39320 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Sat, 7 Apr 2007 21:44:26 +0000 Subject: [PATCH] * Allow packages to be added to the system path like so: environment = { extraPackages = pkgs: [ pkgs.firefox pkgs.thunderbird ]; }; This approach is often actually nicer than adding to the default profile using nix-env, since it's declarative, and all packages declared here will be updated automatically when you run nixos-rebuild. * Allow additional setuid programs to be specified in security.extraSetuidPrograms. svn path=/nixos/trunk/; revision=8548 --- system/options.nix | 32 +++++++++++++++++++++++++++++++- system/system.nix | 7 +++++-- 2 files changed, 36 insertions(+), 3 deletions(-) diff --git a/system/options.nix b/system/options.nix index 167a94d1b3a..8416f1724f7 100644 --- a/system/options.nix +++ b/system/options.nix @@ -790,11 +790,23 @@ default = ["passwd" "su" "crontab" "ping" "ping6"]; description = " Only the programs listed here will be made setuid root (through - a wrapper program). + a wrapper program). It's better to set +