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