NixOS:config argument: Difference between revisions
imported>Nix m recategorize |
m changed instances of pkgs.lib to more commonly available lib |
||
(One intermediate revision by one other user not shown) | |||
Line 6: | Line 6: | ||
<syntaxhighlight lang="nix"> | <syntaxhighlight lang="nix"> | ||
{config, pkgs, ...}: | {config, pkgs, lib ...}: | ||
{ | { | ||
options = { | options = { | ||
foo = | foo = lib.mkOption { | ||
description = "..."; | description = "..."; | ||
}; | }; | ||
Line 30: | Line 30: | ||
<syntaxhighlight lang="nix"> | <syntaxhighlight lang="nix"> | ||
{config, pkgs, ...}: | {config, pkgs, lib, ...}: | ||
{ | { | ||
options = { | options = { | ||
foo = | foo = lib.mkOption { | ||
default = false; | default = false; | ||
type = with | type = with lib.types; bool; | ||
description = " | description = "foo boolean option"; | ||
}; | }; | ||
}; | }; | ||
Line 59: | Line 59: | ||
<syntaxhighlight lang="nix"> | <syntaxhighlight lang="nix"> | ||
{config, pkgs, ...}: | {config, pkgs, lib, ...}: | ||
{ | { | ||
options = { | options = { | ||
foo = | foo = lib.mkOption { | ||
default = false; | default = false; | ||
type = with | type = with lib.types; bool; | ||
description = " | description = "foo boolean"; | ||
}; | }; | ||
}; | }; | ||
config = | config = lib.mkIf config.foo { | ||
bar = 42; | bar = 42; | ||
}; | }; | ||
Line 81: | Line 81: | ||
<syntaxhighlight lang="nix"> | <syntaxhighlight lang="nix"> | ||
{config, pkgs, ...}: | {config, pkgs, lib, ...}: | ||
let | let | ||
Line 89: | Line 89: | ||
in | in | ||
with | with lib; { | ||
options = { | options = { | ||
foo.bar.baz = { | foo.bar.baz = { | ||
Line 106: | Line 106: | ||
[[Category:Reference]] | [[Category:Reference]] | ||
[[Category:NixOS]] |