11 lines
204 B
Nix
11 lines
204 B
Nix
{ config, lib, ... }:
|
|
|
|
let
|
|
cfg = config.modules.k3s;
|
|
in
|
|
|
|
{
|
|
options.modules.k3s.enable = lib.mkEnableOption "Enable the k3s service";
|
|
|
|
config = lib.mkIf cfg.enable { services.k3s.enable = true; };
|
|
}
|