Templates: fix invalid mock flake

This commit is contained in:
Johannes Kirschbauer
2025-07-06 16:43:38 +02:00
parent ad169d4d52
commit 072654abd6
2 changed files with 14 additions and 5 deletions

View File

@@ -1,8 +1,8 @@
{
outputs =
{ ... }:
{
clan.templates = {
let
templates = {
disko = {
single-disk = {
description = "A simple ext4 disk with a single partition";
@@ -41,5 +41,11 @@
};
};
};
in
rec {
inherit (clan) clanInternals;
clan.clanInternals.templates = templates;
clan.templates = templates;
};
}