25 lines
510 B
Nix
25 lines
510 B
Nix
{
|
|
imports = [
|
|
../../modules/conf.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" ];
|
|
};
|
|
colorscheme = "catppuccin-mocha";
|
|
};
|
|
}
|