33 lines
585 B
Nix
33 lines
585 B
Nix
|
{ 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;
|
||
|
|
||
|
}
|