DashNix/hardware/overheating/configuration.nix
2024-08-06 14:29:58 +02:00

53 lines
1.2 KiB
Nix

{ config, ... }: {
imports = [
../../modules
];
conf = {
monitor = "eDP-1";
scale = "2.0";
hostname = "overheating";
boot_params = [ "rtc_cmos.use_acpi_alarm=1" ];
ironbar.modules = [
{ type = "upower"; class = "memory-usage"; }
];
};
mods = {
stylix.colorscheme = "catppuccin-mocha";
hyprland = {
monitor = [
# default
"eDP-1,2944x1840@90,0x0,2"
# all others
",highres,auto,1"
];
extra_autostart = [ "hyprdock --server" ];
};
amdgpu.enable = true;
kde_connect.enable = true;
bluetooth.enable = true;
acpid.enable = true;
greetd = {
resolution = "3440x1440@180";
};
nextcloud = {
synclist = [
{
name = "document_sync";
remote = "/Documents";
local = "/home/${config.conf.username}/Documents";
}
{
name = "picture_sync";
remote = "/Pictures";
local = "/home/${config.conf.username}/Pictures";
}
{
name = "pw_sync";
remote = "PWs";
local = "/home/${config.conf.username}/Music";
}
];
};
};
}