10 lines
164 B
Nix
10 lines
164 B
Nix
{ config, inputs, ... }:
|
|
let
|
|
cfg = config.my.openlinkhub;
|
|
in
|
|
{
|
|
imports = [
|
|
inputs.openlinkhub.nixosModules.default
|
|
];
|
|
openlinkhub.enable = cfg.enable;
|
|
} |