Homer: Improve styling.

This commit is contained in:
Dmitry Voronin 2025-01-15 12:07:28 +03:00
parent 43de7ea325
commit ded12ad5f5
Signed by: voronind
SSH key fingerprint: SHA256:3kBb4iV2ahufEBNq+vFbUe4QYfHt98DHQjN7QaptY9k
5 changed files with 40 additions and 35 deletions

View file

@ -1,8 +1,4 @@
{
config,
lib,
...
}:
{ config, lib, ... }:
let
cfg = config.module.sway;
in

View file

@ -12,35 +12,36 @@
isDefault = true;
withExternalGnupg = true;
};
settings = let
dayEnd = 19;
dayStart = 10;
fontSize = config.module.style.font.size.application;
reminderMinutes = 10;
snoozeMinutes = 10;
in
{
"browser.download.useDownloadDir" = true;
"calendar.alarms.defaultsnoozelength" = snoozeMinutes;
"calendar.alarms.eventalarmlen" = reminderMinutes;
"calendar.alarms.onforevents" = 0;
"calendar.alarms.onfortodos" = 0;
"calendar.alarms.show" = true;
"calendar.alarms.soundType" = 1;
"calendar.alarms.soundURL" = "file://${<static/Notification.ogg>}";
"calendar.alarms.todoalarmlen" = reminderMinutes;
"calendar.item.editInTab" = true;
"calendar.notifications.times" = "-PT${toString reminderMinutes}M";
"calendar.view-minimonth.showWeekNumber" = false;
"calendar.view.dayendhour" = dayEnd;
"calendar.view.daystarthour" = dayStart;
"font.minimum-size.x-western" = fontSize;
"font.size.monospace.x-western" = fontSize;
"font.size.variable.x-western" = fontSize;
"mail.biff.use_system_alert" = true;
"mailnews.start_page.enabled" = false;
"pdfjs.enabledCache.state" = false;
};
settings =
let
dayEnd = 19;
dayStart = 10;
fontSize = config.module.style.font.size.application;
reminderMinutes = 10;
snoozeMinutes = 10;
in
{
"browser.download.useDownloadDir" = true;
"calendar.alarms.defaultsnoozelength" = snoozeMinutes;
"calendar.alarms.eventalarmlen" = reminderMinutes;
"calendar.alarms.onforevents" = 0;
"calendar.alarms.onfortodos" = 0;
"calendar.alarms.show" = true;
"calendar.alarms.soundType" = 1;
"calendar.alarms.soundURL" = "file://${<static/Notification.ogg>}";
"calendar.alarms.todoalarmlen" = reminderMinutes;
"calendar.item.editInTab" = true;
"calendar.notifications.times" = "-PT${toString reminderMinutes}M";
"calendar.view-minimonth.showWeekNumber" = false;
"calendar.view.dayendhour" = dayEnd;
"calendar.view.daystarthour" = dayStart;
"font.minimum-size.x-western" = fontSize;
"font.size.monospace.x-western" = fontSize;
"font.size.variable.x-western" = fontSize;
"mail.biff.use_system_alert" = true;
"mailnews.start_page.enabled" = false;
"pdfjs.enabledCache.state" = false;
};
# ISSUE: https://github.com/nix-community/home-manager/issues/5775
# ISSUE: https://github.com/nix-community/home-manager/issues/5933

View file

@ -62,7 +62,8 @@ let
(mkVideoLink "LiveWallpaperPc" "https://livewallpaperpc.com")
(mkVideoLink "MoeWalls" "https://moewalls.com")
(mkVideoLink "Motion Backgrounds" "https://motionbgs.com")
] ++ [
]
++ [
(mkImageLink "Unsplash" "https://unsplash.com")
(mkImageLink "Wallhaven" "https://wallhaven.cc")
]
@ -102,6 +103,7 @@ let
theme = "default";
title = "Dashboard";
columns = "auto"; # 1, 2, 3, 4, 6, 12 or auto.
stylesheet = [ "assets/custom.css" ];
defaults = {
colorTheme = "dark";
layout = "columns"; # columns or list.

4
package/homer/Custom.css Normal file
View file

@ -0,0 +1,4 @@
.search-label {
display: none;
visibility: hidden;
}

View file

@ -6,6 +6,7 @@
}@args:
let
cfg = (import ./Config.nix args).file;
css = ./Custom.css;
in
stdenv.mkDerivation (finalAttrs: {
dontUnpack = true;
@ -23,6 +24,7 @@ stdenv.mkDerivation (finalAttrs: {
pushd $out
unzip $src
cp ${cfg} $out/assets/config.yml
cp ${css} $out/assets/custom.css
runHook postInstall
'';