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:
parent
ec93b75598
commit
d8ac0b9d86
|
@ -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.";
|
|
||||||
};
|
|
||||||
}
|
|
Loading…
Reference in a new issue