32 lines
569 B
Nix
32 lines
569 B
Nix
{ 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";
|
|
|
|
}
|