nixos-config/hosts/spark.nix

33 lines
585 B
Nix
Raw Normal View History

2019-12-25 15:20:36 -08:00
{ config, pkgs, ... }:
let
hostname = "spark";
in {
imports = [
../defaults.nix
../networks/sea.fudo.org.nix
../profiles/desktop.nix
../hardware-configuration.nix
];
# Use the systemd-boot EFI boot loader.
boot.loader.systemd-boot.enable = true;
boot.loader.efi = {
canTouchEfiVariables = true;
efibootmgr = {
efiDisk = "/dev/sda1";
};
# efiSysMountPoint = "/boot/efi";
};
networking.hostName = hostname;
hardware.bluetooth.enable = false;
hardware.opengl.driSupport32Bit = true;
hardware.opengl.driSupport = true;
}