ooknet/nixos/modules/host/name.nix

8 lines
156 B
Nix

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