nix/hosts/nixos-laptop/configuration.nix

40 lines
946 B
Nix
Raw Normal View History

2023-07-01 10:23:32 +02:00
{ lib, config, pkgs, ... }: {
2023-07-06 05:24:21 +02:00
# Allow unfree packages
nixpkgs.config.allowUnfree = true;
2023-07-01 11:37:30 +02:00
# Set the networking hostname:
2023-07-01 11:38:21 +02:00
networking.hostName = "nixos-laptop";
2023-07-01 11:37:30 +02:00
2023-07-01 10:23:32 +02:00
# Configure the fingerprint reader
services.fprintd = {
enable = true;
tod.enable = true;
tod.driver = pkgs.libfprint-2-tod1-vfs0090;
};
2023-07-05 14:58:58 +02:00
# Enable nVidia PRIME Render Offload and OpenGL
2023-07-01 10:23:32 +02:00
# https://github.com/NixOS/nixos-hardware/blob/master/lenovo/thinkpad/p1/3th-gen/nvidia.nix
2023-07-05 14:58:58 +02:00
hardware = {
opengl.enable = true;
opengl.driSupport32Bit = true;
opengl.driSupport = true;
2023-07-05 14:58:58 +02:00
2023-07-12 08:29:53 +02:00
nvidia = {
open = false;
powerManagement.enable = true;
modesetting.enable = true;
prime = {
2023-07-12 08:34:56 +02:00
reverseSync.enable = true;
2023-07-12 08:29:53 +02:00
intelBusId = lib.mkDefault "PCI:0:2:0";
nvidiaBusId = lib.mkDefault "PCI:1:0:0";
};
2023-07-05 14:58:58 +02:00
};
2023-07-01 10:23:32 +02:00
};
2023-07-12 05:54:40 +02:00
environment.systemPackages = with pkgs; [
2023-07-12 08:08:57 +02:00
# Fingerprint software
2023-07-12 05:54:40 +02:00
fprintd
];
2023-07-12 08:34:24 +02:00
}