3 Commits

Author SHA1 Message Date
e015e0b5bd clan machines 2025-07-11 12:24:17 +07:00
0b0e4d5cc7 update(inventory.json): machine 'b4l' 2025-07-11 12:15:44 +07:00
1870d2ce6c Add machine b4l 2025-07-11 12:15:44 +07:00
3 changed files with 14 additions and 0 deletions

View File

@@ -35,6 +35,7 @@
imports = [
./fmt.nix
./shell.nix
./machines
];
}
);

1
inventory.json Normal file
View File

@@ -0,0 +1 @@
{}

12
machines/default.nix Normal file
View File

@@ -0,0 +1,12 @@
{ inputs, self, ... }:
{
imports = [
inputs.clan-core.flakeModules.default
];
clan = {
meta.name = "NewEdgeClan";
machines = { };
specialArgs = { inherit self; };
inherit self;
};
}