ooknet/nixos/modules/base/host/name.nix

12 lines
160 B
Nix

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