clean: remove unused things

This commit is contained in:
Ahwx 2025-11-20 22:02:46 +01:00
parent 21f93302cc
commit 3fa1cfe043

View file

@ -1,17 +0,0 @@
{
lib,
config,
...
}: let
inherit (lib) mkOption types;
inherit (config.liv) variables;
in {
options.liv.variables.dandelion = {
thisMachine = mkOption {
default = "dandelion.srv.${variables.primaryDomain}";
type = types.str;
readOnly = true;
description = "Domain of this specific machine";
};
};
}