refactor: remove unused host module

- Deleted `modules/home/host/default.nix` as it was no longer in use.
- The `host` option and related configuration were deemed unnecessary.
This commit is contained in:
Harald Hoyer 2025-03-20 09:11:57 +01:00
parent ec93b75598
commit d8ac0b9d86

View file

@ -1,18 +0,0 @@
{
lib,
config,
pkgs,
host ? null,
format ? "unknown",
...
}:
let
inherit (lib) types;
inherit (lib.metacfg) mkOpt;
in
{
options.metacfg.host = {
name = mkOpt (types.nullOr types.str) host "The host name.";
};
}