mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-03-06 23:31:34 +00:00
Use the new configuration scheme for system's options.
svn path=/nixos/trunk/; revision=12549
This commit is contained in:
parent
b8ff944cd2
commit
d63bfe3c31
system
|
@ -1,4 +1,8 @@
|
|||
{pkgs, mkOption}:
|
||||
pkgs: config:
|
||||
|
||||
let
|
||||
inherit (pkgs.lib) mkOption;
|
||||
in
|
||||
|
||||
{
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
rec {
|
||||
configComponents = [
|
||||
configuration
|
||||
(import ./options.nix {inherit pkgs; inherit (pkgs.lib) mkOption;})
|
||||
(import ./options.nix)
|
||||
];
|
||||
|
||||
noOption = name: values:
|
||||
|
|
Loading…
Reference in a new issue