26 lines
513 B
Nix
26 lines
513 B
Nix
{ config, lib, inputs, pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
modules/game.nix
|
|
modules/nvidia.nix
|
|
];
|
|
networking.hostName = "patate-douce";
|
|
networking.wireless.enable = true;
|
|
networking.networkmanager.enable = false;
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
acpi
|
|
tlp
|
|
];
|
|
|
|
hardware.nvidia.prime.offload = {
|
|
enable = true;
|
|
enableOffloadCmd = true;
|
|
};
|
|
|
|
services.libinput.enable = true;
|
|
services.libinput.touchpad.clickMethod = "clickfinger";
|
|
services.libinput.touchpad.tapping = false;
|
|
}
|