snowflake/home/programs/hyprpanel/settings.nix

77 lines
1.6 KiB
Nix
Raw Normal View History

2025-02-09 02:18:25 -05:00
{
pkgs,
inputs,
...
}: {
programs.hyprpanel.settings = {
bar = {
2025-02-09 02:18:25 -05:00
autoHide = "fullscreen";
launcher.autoDetectIcon = true;
2025-02-08 20:52:34 -05:00
clock = {
2025-02-09 02:18:25 -05:00
format = "%m/%d/%y %H:%M";
};
media = {
truncation = true;
truncation_size = 40;
2025-02-08 20:52:34 -05:00
};
workspaces = {
2025-02-09 02:18:25 -05:00
workspaces = 4;
show_icons = true;
2025-02-09 02:18:25 -05:00
showWsIcons = false;
showApplicationIcons = false;
monitorSpecific = false;
};
customModules = {
hyprsunset = {
temperature = "3000k";
};
weather.unit = "metric";
};
};
2025-02-08 20:52:34 -05:00
notifications = {
monitor = 0;
active_monitor = false;
};
menus = {
clock = {
time = {
military = true;
2025-02-09 02:18:25 -05:00
hideSeconds = false;
};
weather = {
2025-02-09 02:18:25 -05:00
enabled = false;
key = "13b77bbcf0dc420782005246250902";
unit = "metric";
location = "New York";
};
};
media = {
displayTime = true;
};
dashboard = {
stats.enable_gpu = false;
directories.enabled = false;
shortcuts.enabled = false;
powermenu = {
2025-02-09 02:18:25 -05:00
sleep = "${inputs.hyprland.packages.${pkgs.system}.hyprland}/bin/hyprctl dispatch dpms off";
avatar = {
2025-02-09 00:21:15 -05:00
image = "/home/notoh/dev/assets/pfps/pfp2.jpg";
name = "notohh";
};
};
};
};
theme = {
bar.transparent = false;
2025-02-08 20:52:34 -05:00
osd = {
monitor = 0;
active_monitor = false;
};
font = {
name = "Inter";
size = "17px";
};
};
};
}