to benefit from latest software versions with a screen that works :) … it requires a more recent kernel version ¯\_(ツ)_/¯
67 lines
2.4 KiB
Nix
67 lines
2.4 KiB
Nix
#
|
|
# NixOS Configuration for Framework Laptop
|
|
# Source: https://gist.github.com/digitalknk/ee0379c1cd4597463c31a323ea5882a5
|
|
# Alt: https://github.com/NixOS/nixos-hardware/blob/master/framework/default.nix
|
|
# Alt: https://github.com/DAlperin/dotfiles/blob/main/machines/spaceship/default.nix
|
|
# Doc: https://wiki.archlinux.org/title/Framework_Laptop
|
|
#
|
|
|
|
{ config, lib, pkgs, modulesPath, ... }:
|
|
|
|
{
|
|
boot.kernelParams = [
|
|
"mem_sleep_default=deep"
|
|
"nvme.noacpi=1" # power consumption. See https://github.com/NixOS/nixos-hardware/blob/12620020f76b1b5d2b0e6fbbda831ed4f5fe56e1/framework/default.nix#L12
|
|
"module_blacklist=hid_sensor_hub" # brightness keys. See https://dov.dev/blog/nixos-on-the-framework-12th-gen
|
|
];
|
|
|
|
# Use latest kernel version because on 5.15 screen is not detected properly (and external monitor doesn't work either)
|
|
boot.kernelPackages = pkgs.linuxPackages_5_18; # see https://github.com/NixOS/nixpkgs/issues/183955#issuecomment-1210468614
|
|
|
|
powerManagement = {
|
|
enable = true;
|
|
powertop.enable = true;
|
|
# TODO Not sure what it does: the default detection uses "powersave"
|
|
# cpuFreqGovernor = lib.mkDefault "ondemand";
|
|
};
|
|
|
|
hardware.bluetooth.enable = true;
|
|
|
|
# Enable thermal data
|
|
services.thermald.enable = true;
|
|
|
|
# TODO Enable fingerprint support
|
|
# services.fprintd.enable = true;
|
|
|
|
# Display thins like a boss
|
|
hardware.video.hidpi.enable = lib.mkDefault true; # https://github.com/kvark/dotfiles/blob/master/nix/hardware-configuration.nix#L41
|
|
hardware.opengl.enable = true;
|
|
hardware.opengl.extraPackages = with pkgs; [
|
|
mesa_drivers
|
|
vaapiIntel
|
|
vaapiVdpau
|
|
libvdpau-va-gl
|
|
intel-media-driver
|
|
];
|
|
|
|
# Bring in some audio
|
|
security.rtkit.enable = true; # rtkit is optional but recommended
|
|
services.pipewire = {
|
|
enable = true;
|
|
alsa.enable = true;
|
|
alsa.support32Bit = true;
|
|
pulse.enable = true;
|
|
# If you want to use JACK applications, uncomment this
|
|
#jack.enable = true;
|
|
|
|
# use the example session manager (no others are packaged yet so this is enabled by default,
|
|
# no need to redefine it in your config for now)
|
|
#media-session.enable = true;
|
|
};
|
|
|
|
# Enable touchpad support (enabled default in most desktopManager).
|
|
services.xserver.libinput.enable = true;
|
|
|
|
# Backlight (see https://wiki.archlinux.org/title/Backlight#xbacklight_returns_:_No_outputs_have_backlight_property)
|
|
hardware.acpilight.enable = true;
|
|
} |