Chore: remove unsued inventory example

This commit is contained in:
Johannes Kirschbauer
2024-11-13 09:18:24 +01:00
parent 3822efc11b
commit a24bc87cb5
2 changed files with 0 additions and 41 deletions

View File

@@ -1,39 +0,0 @@
{ self, ... }:
self.lib.buildClan {
# Name of the clan in the UI, should be unique
meta.name = "Inventory clan";
# Should usually point to the directory of flake.nix
directory = self;
inventory = {
services = {
borgbackup.instance_1 = {
roles.server.machines = [ "backup_server" ];
roles.client.tags = [ "backup" ];
};
};
};
# merged with
machines = {
"backup_server" = {
clan.tags = [ "all" ];
# ... rest of the machine config
};
"client_1_machine" = {
clan.tags = [
"all"
"backup"
];
};
"client_2_machine" = {
clan.tags = [
"all"
"backup"
];
# Name of the machine in the UI
clan.meta.name = "camina";
};
};
}

View File

@@ -5,8 +5,6 @@ let
); );
in in
{ {
flake.inventory = import ./example.nix { inherit self; };
perSystem = perSystem =
{ {
pkgs, pkgs,