initial set up for k3s service

This commit is contained in:
Chris Kruining 2025-09-15 16:25:34 +02:00
parent f26d7d4e69
commit dc7afdf791
No known key found for this signature in database
GPG key ID: EB894A3560CCCAD2
9 changed files with 491 additions and 0 deletions

View file

@ -0,0 +1,15 @@
{ lib, ... }:
let
module = lib.modules.importApply ./default.nix {};
in
{
clan.modules.k3s = module;
perSystem = { ... }: {
# clan.nixosTests.k3s = {
# imports = [ ./tests/vm/default.nix ];
# clan.modules."@amarth/k3s" = module;
# };
};
}