clanService/samba: samba service

This commit is contained in:
2026-02-11 17:01:51 +07:00
parent d91da5d74b
commit 2834b43d66
25 changed files with 713 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
{ inputs, self, ... }:
let
module = ./default.nix;
in
{
clan.modules = {
samba = module;
};
perSystem =
{ ... }:
{
clan.nixosTests.service-samba = {
imports = [ ./tests/vm/default.nix ];
_module.args = { inherit self inputs; };
clan.modules."@clan/samba" = module;
};
};
}