2022-04-15 15:07:21 +00:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
users.motd = builtins.readFile ./motd;
|
|
|
|
services.tailscale.port = 15429;
|
|
|
|
|
|
|
|
networking.hostName = "ontos";
|
|
|
|
networking.hostId = "07602ecc";
|
2022-09-22 23:27:24 +00:00
|
|
|
|
|
|
|
services.xserver.videoDrivers = [ "nvidia" ];
|
|
|
|
hardware.opengl.enable = true;
|
2023-02-19 23:56:08 +00:00
|
|
|
|
|
|
|
virtualisation.docker.enableNvidia = true;
|
2023-02-19 23:59:40 +00:00
|
|
|
hardware.opengl.driSupport32Bit = true;
|
2022-04-15 15:07:21 +00:00
|
|
|
}
|