2013-10-23 17:50:55 +02:00
|
|
|
{ config, pkgs, options, ... }:
|
|
|
|
|
|
|
|
with pkgs.lib;
|
2009-09-28 20:26:13 +02:00
|
|
|
|
|
|
|
let
|
2009-09-29 17:21:36 +02:00
|
|
|
|
2013-10-23 18:51:55 +02:00
|
|
|
alias = from: to: rename {
|
|
|
|
inherit from to;
|
2009-09-29 17:21:36 +02:00
|
|
|
name = "Alias";
|
2013-10-23 18:51:55 +02:00
|
|
|
use = id;
|
|
|
|
define = id;
|
2013-10-23 18:58:05 +02:00
|
|
|
visible = true;
|
2009-09-29 17:21:36 +02:00
|
|
|
};
|
|
|
|
|
2013-10-23 18:51:55 +02:00
|
|
|
obsolete = from: to: rename {
|
|
|
|
inherit from to;
|
2009-09-29 17:21:36 +02:00
|
|
|
name = "Obsolete name";
|
2013-10-23 18:58:05 +02:00
|
|
|
use = x: builtins.trace "Obsolete option `${showOption from}' is used instead of `${showOption to}'." x;
|
|
|
|
define = x: builtins.trace "Obsolete option `${showOption from}' is defined instead of `${showOption to}'." x;
|
2009-09-29 17:21:36 +02:00
|
|
|
};
|
|
|
|
|
2013-10-23 18:51:55 +02:00
|
|
|
deprecated = from: to: rename {
|
|
|
|
inherit from to;
|
2009-09-29 17:21:36 +02:00
|
|
|
name = "Deprecated name";
|
2013-10-23 18:58:05 +02:00
|
|
|
use = x: abort "Deprecated option `${showOption from}' is used instead of `${showOption to}'.";
|
|
|
|
define = x: abort "Deprecated option `${showOption from}' is defined instead of `${showOption to}'.";
|
2009-09-29 17:21:36 +02:00
|
|
|
};
|
|
|
|
|
2013-10-23 18:58:05 +02:00
|
|
|
showOption = concatStringsSep ".";
|
2013-10-23 18:51:55 +02:00
|
|
|
|
2013-10-23 17:50:55 +02:00
|
|
|
zipModules = list:
|
2013-08-22 08:35:36 +02:00
|
|
|
zipAttrsWith (n: v:
|
2010-10-14 20:18:38 +02:00
|
|
|
if tail v != [] then
|
2013-02-21 20:43:02 +01:00
|
|
|
if n == "_type" then (head v)
|
2013-10-23 18:22:26 +02:00
|
|
|
else if n == "extraConfigs" then concatLists v
|
|
|
|
else if n == "warnings" then concatLists v
|
2010-10-14 20:18:38 +02:00
|
|
|
else if n == "description" || n == "apply" then
|
|
|
|
abort "Cannot rename an option to multiple options."
|
|
|
|
else zipModules v
|
|
|
|
else head v
|
2009-09-28 20:26:13 +02:00
|
|
|
) list;
|
|
|
|
|
2013-10-23 18:58:05 +02:00
|
|
|
rename = { from, to, name, use, define, visible ? false }:
|
2009-09-28 20:26:13 +02:00
|
|
|
let
|
2013-10-23 18:51:55 +02:00
|
|
|
setTo = setAttrByPath to;
|
|
|
|
setFrom = setAttrByPath from;
|
|
|
|
toOf = attrByPath to
|
2013-10-23 18:58:05 +02:00
|
|
|
(abort "Renaming error: option `${showOption to}' does not exists.");
|
2013-10-23 18:51:55 +02:00
|
|
|
fromOf = attrByPath from
|
2013-10-23 18:58:05 +02:00
|
|
|
(abort "Internal error: option `${showOption from}' should be declared.");
|
2009-09-28 20:26:13 +02:00
|
|
|
in
|
2013-10-23 17:50:55 +02:00
|
|
|
[ { options = setFrom (mkOption {
|
2013-10-23 18:58:05 +02:00
|
|
|
description = "${name} of <option>${showOption to}</option>.";
|
2013-10-23 18:51:55 +02:00
|
|
|
apply = x: use (toOf config);
|
2013-10-23 18:58:05 +02:00
|
|
|
inherit visible;
|
2013-10-23 17:50:55 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
{ options = setTo (mkOption {
|
|
|
|
extraConfigs =
|
|
|
|
let externalDefs = (fromOf options).definitions; in
|
|
|
|
if externalDefs == [] then []
|
2013-10-23 18:51:55 +02:00
|
|
|
else map (def: def.value) (define externalDefs);
|
2013-10-23 17:50:55 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
];
|
2009-09-28 20:26:13 +02:00
|
|
|
|
2013-10-23 18:51:55 +02:00
|
|
|
obsolete' = option: singleton
|
|
|
|
{ options = setAttrByPath option (mkOption {
|
2013-10-23 18:22:26 +02:00
|
|
|
default = null;
|
|
|
|
visible = false;
|
|
|
|
});
|
2013-10-23 18:51:55 +02:00
|
|
|
config.warnings = optional (getAttrFromPath option config != null)
|
2013-10-23 18:58:05 +02:00
|
|
|
"The option `${showOption option}' defined in your configuration no longer has any effect; please remove it.";
|
2013-10-23 18:22:26 +02:00
|
|
|
};
|
|
|
|
|
2009-09-28 20:26:13 +02:00
|
|
|
in zipModules ([]
|
|
|
|
|
|
|
|
# usage example:
|
2013-10-23 18:51:55 +02:00
|
|
|
# ++ alias [ "services" "xserver" "slim" "theme" ] [ "services" "xserver" "displayManager" "slim" "theme" ]
|
|
|
|
++ obsolete [ "environment" "extraPackages" ] [ "environment" "systemPackages" ]
|
|
|
|
++ obsolete [ "environment" "enableBashCompletion" ] [ "programs" "bash" "enableCompletion" ]
|
2009-09-28 20:26:13 +02:00
|
|
|
|
2013-10-23 18:51:55 +02:00
|
|
|
++ obsolete [ "security" "extraSetuidPrograms" ] [ "security" "setuidPrograms" ]
|
|
|
|
++ obsolete [ "networking" "enableWLAN" ] [ "networking" "wireless" "enable" ]
|
|
|
|
++ obsolete [ "networking" "enableRT73Firmware" ] [ "networking" "enableRalinkFirmware" ]
|
2012-03-01 21:10:46 +01:00
|
|
|
|
2013-01-16 12:33:18 +01:00
|
|
|
# FIXME: Remove these eventually.
|
2013-10-23 18:51:55 +02:00
|
|
|
++ obsolete [ "boot" "systemd" "sockets" ] [ "systemd" "sockets" ]
|
|
|
|
++ obsolete [ "boot" "systemd" "targets" ] [ "systemd" "targets" ]
|
|
|
|
++ obsolete [ "boot" "systemd" "services" ] [ "systemd" "services" ]
|
2013-01-16 12:33:18 +01:00
|
|
|
|
2009-09-29 11:50:38 +02:00
|
|
|
# Old Grub-related options.
|
2013-10-23 18:51:55 +02:00
|
|
|
++ obsolete [ "boot" "copyKernels" ] [ "boot" "loader" "grub" "copyKernels" ]
|
|
|
|
++ obsolete [ "boot" "extraGrubEntries" ] [ "boot" "loader" "grub" "extraEntries" ]
|
|
|
|
++ obsolete [ "boot" "extraGrubEntriesBeforeNixos" ] [ "boot" "loader" "grub" "extraEntriesBeforeNixOS" ]
|
|
|
|
++ obsolete [ "boot" "grubDevice" ] [ "boot" "loader" "grub" "device" ]
|
|
|
|
++ obsolete [ "boot" "bootMount" ] [ "boot" "loader" "grub" "bootDevice" ]
|
|
|
|
++ obsolete [ "boot" "grubSplashImage" ] [ "boot" "loader" "grub" "splashImage" ]
|
2009-09-28 20:26:13 +02:00
|
|
|
|
2013-10-23 18:51:55 +02:00
|
|
|
++ obsolete [ "boot" "initrd" "extraKernelModules" ] [ "boot" "initrd" "kernelModules" ]
|
2009-12-15 15:05:01 +01:00
|
|
|
|
2010-03-11 18:02:49 +01:00
|
|
|
# OpenSSH
|
2013-10-23 18:51:55 +02:00
|
|
|
++ obsolete [ "services" "sshd" "ports" ] [ "services" "openssh" "ports" ]
|
|
|
|
++ alias [ "services" "sshd" "enable" ] [ "services" "openssh" "enable" ]
|
|
|
|
++ obsolete [ "services" "sshd" "allowSFTP" ] [ "services" "openssh" "allowSFTP" ]
|
|
|
|
++ obsolete [ "services" "sshd" "forwardX11" ] [ "services" "openssh" "forwardX11" ]
|
|
|
|
++ obsolete [ "services" "sshd" "gatewayPorts" ] [ "services" "openssh" "gatewayPorts" ]
|
|
|
|
++ obsolete [ "services" "sshd" "permitRootLogin" ] [ "services" "openssh" "permitRootLogin" ]
|
|
|
|
++ obsolete [ "services" "xserver" "startSSHAgent" ] [ "services" "xserver" "startOpenSSHAgent" ]
|
2009-11-22 01:40:53 +01:00
|
|
|
|
2009-10-12 19:09:38 +02:00
|
|
|
# KDE
|
2013-10-23 18:51:55 +02:00
|
|
|
++ deprecated [ "kde" "extraPackages" ] [ "environment" "kdePackages" ]
|
|
|
|
# ++ obsolete [ "environment" "kdePackages" ] [ "environment" "systemPackages" ] # !!! doesn't work!
|
2009-10-06 21:25:25 +02:00
|
|
|
|
2013-02-02 06:03:45 +01:00
|
|
|
# Multiple efi bootloaders now
|
2013-10-23 18:51:55 +02:00
|
|
|
++ obsolete [ "boot" "loader" "efi" "efibootmgr" "enable" ] [ "boot" "loader" "efi" "canTouchEfiVariables" ]
|
2013-02-02 06:03:45 +01:00
|
|
|
|
2013-09-24 15:53:47 +02:00
|
|
|
# NixOS environment changes
|
|
|
|
# !!! this hardcodes bash, could we detect from config which shell is actually used?
|
2013-10-23 18:51:55 +02:00
|
|
|
++ obsolete [ "environment" "promptInit" ] [ "programs" "bash" "promptInit" ]
|
2013-09-24 15:53:47 +02:00
|
|
|
|
2013-10-23 18:22:26 +02:00
|
|
|
# Options that are obsolete and have no replacement.
|
2013-10-23 18:51:55 +02:00
|
|
|
++ obsolete' [ "boot" "loader" "grub" "bootDevice" ]
|
|
|
|
++ obsolete' [ "boot" "initrd" "luks" "enable" ]
|
2013-10-23 18:22:26 +02:00
|
|
|
|
2013-10-23 18:51:55 +02:00
|
|
|
)
|