Update argument syntax of configuration files.
svn path=/nixos/trunk/; revision=13847
This commit is contained in:
parent
788275e47c
commit
61aa32f174
|
@ -1,4 +1,4 @@
|
||||||
{pkgs, config}:
|
{pkgs, config, ...}:
|
||||||
|
|
||||||
###### interface
|
###### interface
|
||||||
let
|
let
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{pkgs, config}:
|
{pkgs, config, ...}:
|
||||||
|
|
||||||
###### interface
|
###### interface
|
||||||
let
|
let
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
{pkgs, config #, ...
|
{pkgs, config, ...}:
|
||||||
}:
|
|
||||||
|
|
||||||
###### interface
|
###### interface
|
||||||
let
|
let
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{pkgs, config}:
|
{pkgs, config, ...}:
|
||||||
|
|
||||||
###### interface
|
###### interface
|
||||||
let
|
let
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{pkgs, config}:
|
{pkgs, config, ...}:
|
||||||
let
|
let
|
||||||
inherit(pkgs.lib) mkOption;
|
inherit(pkgs.lib) mkOption;
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{pkgs, config}:
|
{pkgs, config, ...}:
|
||||||
|
|
||||||
# Show the NixOS manual on tty7
|
# Show the NixOS manual on tty7
|
||||||
# Originally used only by installation CD
|
# Originally used only by installation CD
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{pkgs, config}:
|
{pkgs, config, ...}:
|
||||||
|
|
||||||
# Show rogue game on tty8
|
# Show rogue game on tty8
|
||||||
# Originally used only by installation CD
|
# Originally used only by installation CD
|
||||||
|
|
Loading…
Reference in New Issue