32 lines
634 B
Nix
32 lines
634 B
Nix
{
|
|
imports = [
|
|
../../modules/conf.nix
|
|
./dsdt.nix
|
|
./firmware.nix
|
|
];
|
|
conf = {
|
|
monitor = "eDP-1";
|
|
scale = "2.0";
|
|
hostname = "overheating";
|
|
boot_params = [ "rtc_cmos.use_acpi_alarm=1" ];
|
|
ironbar.modules = [
|
|
{ type = "upower"; class = "memory-usage"; }
|
|
];
|
|
hyprland = {
|
|
monitor = [
|
|
# default
|
|
"eDP-1,2944x1840@90,0x0,2"
|
|
|
|
# all others
|
|
",highres,auto,1"
|
|
];
|
|
extra_autostart = [ "hyprdock --server" ];
|
|
};
|
|
};
|
|
|
|
hardware.bluetooth.enable = true;
|
|
hardware.bluetooth.powerOnBoot = true;
|
|
|
|
# for hyprdock
|
|
services.acpid.enable = true;
|
|
}
|