nixos/global/id/default.nix
2025-01-13 11:52:09 +08:00

22 lines
301 B
Nix

{
pkgs,
lib,
config,
...
}:
with lib;
let
cfg = config.global.id;
in
{
options.global.id = mkOption {
type = with types; str;
description = "systemd machine id";
};
config = {
environment.etc.machine-id.text = cfg + "\n";
networking.hostId = substring 0 8 cfg;
};
}