1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-06-02 02:53:34 +02:00
nixos-hardware/framework/default.nix

32 lines
917 B
Nix
Raw Normal View History

{ lib, pkgs, ... }: {
imports = [
../common/cpu/intel
../common/pc/laptop
../common/pc/laptop/ssd
];
# For Power consumption
# https://kvark.github.io/linux/framework/2021/10/17/framework-nixos.html
boot.kernelParams = [ "mem_sleep_default=deep" ];
# Requires at least 5.12 for working wi-fi and bluetooth.
# https://community.frame.work/t/using-the-ax210-with-linux-on-the-framework-laptop/1844/89
boot.kernelPackages = lib.mkIf (lib.versionOlder pkgs.linux.version "5.12") (lib.mkDefault pkgs.linuxPackages_latest);
# For fingerprint support
services.fprintd.enable = true;
# HiDPI
2022-02-04 17:06:29 +01:00
# Leaving here for documentation
# hardware.video.hidpi.enable = lib.mkDefault true;
# Fix font sizes in X
services.xserver.dpi = 200;
2022-02-04 17:06:29 +01:00
# Fix sizes of GTK/GNOME ui elements
environment.variables = {
2022-02-04 17:06:29 +01:00
GDK_SCALE = lib.mkDefault "2";
GDK_DPI_SCALE = lib.mkDefault "0.5";
};
}