mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 03:15:56 +03:00
8 lines
93 B
Nix
8 lines
93 B
Nix
|
{ config, lib, ... }:
|
||
|
|
||
|
{
|
||
|
loaOfSub = lib.mkIf config.enable {
|
||
|
foo.enable = true;
|
||
|
};
|
||
|
}
|