mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-14 05:29:20 +03:00
16 lines
154 B
Nix
16 lines
154 B
Nix
![]() |
{ lib, ... }:
|
||
|
{
|
||
|
|
||
|
imports = [
|
||
|
{
|
||
|
value = lib.mkDefault "def";
|
||
|
}
|
||
|
];
|
||
|
|
||
|
value = lib.mkMerge [
|
||
|
(lib.mkIf false "nope")
|
||
|
"yes"
|
||
|
];
|
||
|
|
||
|
}
|