10 lines
172 B
Nix
10 lines
172 B
Nix
|
{ config, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
users.motd = builtins.readFile ./motd;
|
||
|
services.tailscale.port = 15429;
|
||
|
|
||
|
networking.hostName = "ontos";
|
||
|
networking.hostId = "07602ecc";
|
||
|
}
|