16 lines
342 B
Nix
16 lines
342 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
users.motd = builtins.readFile ./motd;
|
|
services.tailscale.port = 15429;
|
|
|
|
networking.hostName = "ontos";
|
|
networking.hostId = "07602ecc";
|
|
|
|
services.xserver.videoDrivers = [ "nvidia" ];
|
|
hardware.opengl.enable = true;
|
|
|
|
virtualisation.docker.enableNvidia = true;
|
|
hardware.opengl.driSupport32Bit = true;
|
|
}
|