30 lines
550 B
Nix
30 lines
550 B
Nix
{ lib, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./hardware/cpu/tiger-lake.nix
|
|
./hardware/gpu/nvidia.nix
|
|
./hardware/ssd/ssd.nix
|
|
./gaming.nix
|
|
./nh.nix
|
|
./hyprland.nix
|
|
];
|
|
|
|
swapDevices = [{
|
|
device = "/var/lib/swapfile";
|
|
size = 20*1024;
|
|
}];
|
|
|
|
hardware = {
|
|
enableRedistributableFirmware = lib.mkDefault true;
|
|
};
|
|
|
|
services = {
|
|
fwupd = {
|
|
enable = lib.mkDefault true;
|
|
};
|
|
thermald = {
|
|
enable = lib.mkDefault true;
|
|
};
|
|
};
|
|
} |