fixed formatting

This commit is contained in:
Fishandchips321 2026-02-28 20:03:22 +00:00
parent 7ec36e8a2b
commit d8dd32193d
15 changed files with 167 additions and 76 deletions

View file

@ -1,4 +1,9 @@
{config, pkgs, lib, ...}:
{
config,
pkgs,
lib,
...
}:
let
cfg = config.modules.k3s;
@ -7,7 +12,5 @@ in
{
options.modules.k3s.enable = lib.mkEnableOption "Enable the k3s service";
config = lib.mkIf cfg.enable {
services.k3s.enable = true;
};
}
config = lib.mkIf cfg.enable { services.k3s.enable = true; };
}