44 lines
1.0 KiB
Nix
44 lines
1.0 KiB
Nix
|
# Edit this configuration file to define what should be installed on
|
||
|
# your system. Help is available in the configuration.nix(5) man page, on
|
||
|
# https://search.nixos.org/options and in the NixOS manual (`nixos-help`).
|
||
|
|
||
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
imports =
|
||
|
[ # Include the results of the hardware scan.
|
||
|
./hardware-configuration.nix
|
||
|
];
|
||
|
|
||
|
# HW
|
||
|
hardware.opengl = {
|
||
|
enable = true;
|
||
|
driSupport = true;
|
||
|
driSupport32Bit = true;
|
||
|
extraPackages = with pkgs; [
|
||
|
intel-ocl
|
||
|
intel-compute-runtime
|
||
|
intel-media-driver
|
||
|
vaapiIntel
|
||
|
vaapiVdpau
|
||
|
libvdpau-va-gl
|
||
|
];
|
||
|
};
|
||
|
hardware.bluetooth.enable = true;
|
||
|
|
||
|
# Use the systemd-boot EFI boot loader.
|
||
|
boot.loader.systemd-boot.enable = true;
|
||
|
boot.loader.efi.canTouchEfiVariables = true;
|
||
|
|
||
|
networking.hostName = "transient";
|
||
|
networking.networkmanager = {
|
||
|
enable = true;
|
||
|
wifi.powersave = true;
|
||
|
wifi.scanRandMacAddress = true;
|
||
|
wifi.macAddress = "random";
|
||
|
};
|
||
|
|
||
|
system.stateVersion = "24.05"; # Did you read the comment?
|
||
|
}
|
||
|
|