Docs: rename clanName to just name

This commit is contained in:
Johannes Kirschbauer
2024-06-25 13:58:38 +02:00
parent 8d060d8243
commit cf03c71966
6 changed files with 11 additions and 11 deletions

View File

@@ -10,7 +10,7 @@
let
clan = clan-core.lib.buildClan {
directory = self;
clanName = "test_flake_with_core";
meta.name = "test_flake_with_core";
machines = {
vm1 =
{ lib, ... }:

View File

@@ -10,7 +10,7 @@
let
clan = clan-core.lib.buildClan {
directory = self;
clanName = "test_flake_with_core_and_pass";
meta.name = "test_flake_with_core_and_pass";
machines = {
vm1 =
{ lib, ... }:

View File

@@ -10,7 +10,7 @@
let
clan = clan-core.lib.buildClan {
directory = self;
clanName = "test_flake_with_core_dynamic_machines";
meta.name = "test_flake_with_core_dynamic_machines";
machines =
let
machineModules = builtins.readDir (self + "/machines");