8 lines
156 B
Nix
8 lines
156 B
Nix
{config, ...}: let
|
|
cfg = config.ooknet.host;
|
|
in {
|
|
config = {
|
|
networking.hostName = cfg.name;
|
|
environment.sessionVariables.HN = cfg.name;
|
|
};
|
|
}
|