ooknet/nixos/modules/host/name.nix
2024-06-11 22:37:17 +12:00

12 lines
160 B
Nix

{ config, ... }:
let
cfg = config.ooknet.host;
in
{
config = {
networking.hostName = cfg.name;
environment.sessionVariables.HN = cfg.name;
};
}