1
0
forked from clan/clan-core

Merge pull request 'Changed clanIcon to be included into clanCore' (#633) from Qubasa-main into main

This commit is contained in:
clan-bot 2023-12-08 18:11:48 +00:00
commit aad4073a70
2 changed files with 7 additions and 2 deletions

View File

@ -43,6 +43,7 @@ let
{
clanCore.machineName = name;
clanCore.clanName = clanName;
clanCore.clanIcon = clanIcon;
clanCore.clanDir = directory;
nixpkgs.hostPlatform = lib.mkForce system;
@ -82,8 +83,6 @@ in
clanInternals = {
machines = configsPerSystem;
clanName = clanName;
clanIcon = clanIcon;
all-machines-json = lib.mapAttrs
(system: configs: nixpkgs.legacyPackages.${system}.writers.writeJSON "machines.json" (lib.mapAttrs (_: m: m.config.system.clan.deployment.data) configs))
configsPerSystem;

View File

@ -32,6 +32,12 @@
the location of the flake repo, used to calculate the location of facts and secrets
'';
};
clanIcon = lib.mkOption {
type = lib.types.path;
description = ''
the location of the clan icon
'';
};
machineName = lib.mkOption {
type = lib.types.str;
description = ''