move "environment.extraPackages" into the rename module.
svn path=/nixos/trunk/; revision=17485
This commit is contained in:
parent
7568587e88
commit
c9f5889ad1
@ -60,8 +60,7 @@ let
|
|||||||
pkgs.usbutils
|
pkgs.usbutils
|
||||||
pkgs.utillinux
|
pkgs.utillinux
|
||||||
pkgs.wirelesstools
|
pkgs.wirelesstools
|
||||||
]
|
];
|
||||||
++ config.environment.extraPackages;
|
|
||||||
|
|
||||||
|
|
||||||
options = {
|
options = {
|
||||||
@ -69,6 +68,8 @@ let
|
|||||||
environment = {
|
environment = {
|
||||||
|
|
||||||
systemPackages = mkOption {
|
systemPackages = mkOption {
|
||||||
|
default = [];
|
||||||
|
example = [pkgs.firefox pkgs.thunderbird];
|
||||||
description = ''
|
description = ''
|
||||||
The set of packages that appear in
|
The set of packages that appear in
|
||||||
/var/run/current-system/sw. These packages are
|
/var/run/current-system/sw. These packages are
|
||||||
@ -80,16 +81,6 @@ let
|
|||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
# !!! Obsolete.
|
|
||||||
extraPackages = mkOption {
|
|
||||||
default = [];
|
|
||||||
example = [pkgs.firefox pkgs.thunderbird];
|
|
||||||
description = ''
|
|
||||||
This option allows you to add additional packages to the system
|
|
||||||
path.
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
|
|
||||||
pathsToLink = mkOption {
|
pathsToLink = mkOption {
|
||||||
default = ["/bin" "/sbin" "/lib" "/share/man" "/share/info" "/man" "/info"];
|
default = ["/bin" "/sbin" "/lib" "/share/man" "/share/info" "/man" "/info"];
|
||||||
example = ["/"];
|
example = ["/"];
|
||||||
|
@ -34,7 +34,7 @@ in zipModules ([]
|
|||||||
|
|
||||||
# usage example:
|
# usage example:
|
||||||
# ++ rename alias "services.xserver.slim.theme" to "services.xserver.displayManager.slim.theme"
|
# ++ rename alias "services.xserver.slim.theme" to "services.xserver.displayManager.slim.theme"
|
||||||
# ++ rename obsolete "environment.extraPackages" to "environment.systemPackages"
|
++ rename obsolete "environment.extraPackages" to "environment.systemPackages"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user