nixos-config/hosts/monolith.nix

32 lines
569 B
Nix
Raw Normal View History

2019-12-25 15:20:36 -08:00
{ config, pkgs, ... }:
let
hostname = "monolith";
in {
imports = [
../defaults.nix
../networks/sea.fudo.org.nix
../profiles/desktop.nix
../hardware-configuration.nix
];
environment.systemPackages = with pkgs; [
glxinfo
];
networking.hostName = hostname;
services.xserver.videoDrivers = ["nvidia"];
hardware.bluetooth.enable = false;
hardware.opengl.driSupport32Bit = true;
hardware.opengl.driSupport = true;
boot.loader.grub.enable = true;
boot.loader.grub.version = 2;
boot.loader.grub.device = "/dev/sda";
}