2022-02-01 00:44:53 +00:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
imports = [ ./maisem.nix ];
|
|
|
|
|
|
|
|
users.motd = builtins.readFile ./motd;
|
|
|
|
environment.systemPackages = with pkgs; [ nodejs-14_x ];
|
|
|
|
services.tailscale.port = 15428;
|
|
|
|
|
2022-04-15 15:20:52 +00:00
|
|
|
networking.hostName = "kos-mos";
|
|
|
|
networking.hostId = "472479d4";
|
2022-02-01 00:44:53 +00:00
|
|
|
}
|