12 lines
217 B
Nix
12 lines
217 B
Nix
arg@{ config, pkgs, lib, ... }:
|
|
|
|
let
|
|
cfg = config.tv.retiolum;
|
|
arg' = arg // { inherit cfg; };
|
|
in
|
|
|
|
{
|
|
options.tv.retiolum = import ./options.nix arg';
|
|
config = lib.mkIf cfg.enable (import ./config.nix arg');
|
|
}
|