14 lines
269 B
Nix
14 lines
269 B
Nix
{ inputs, self, ... }:
|
|
{
|
|
imports = [
|
|
inputs.clan-core.flakeModules.default
|
|
];
|
|
clan = {
|
|
meta.name = "NewEdgeClan";
|
|
machines = { };
|
|
secrets.age.plugins = [ "age-plugin-yubikey" ];
|
|
specialArgs = { inherit inputs self; };
|
|
inherit self;
|
|
};
|
|
}
|