Files
nix-config/hosts/laptop.nix

30 lines
607 B
Nix

{ config, lib, inputs, pkgs, ... }:
{
imports = [
modules/game.nix
modules/nvidia.nix
modules/vboxHost.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;
hardware.bluetooth.enable = true;
programs.hyprland.enable = true;
}