From e5478bd328d6b4014ab57b03e39451bce8e64694 Mon Sep 17 00:00:00 2001 From: jopejoe1 Date: Fri, 27 Dec 2024 00:38:32 +0100 Subject: [PATCH] update config --- config.nix | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/config.nix b/config.nix index 850b040..054e729 100644 --- a/config.nix +++ b/config.nix @@ -68,15 +68,21 @@ in wayland.windowManager.sway = { enable = true; - config.startup = [ - { - command = "firefox-esr --kiosk c3nav.de"; - } - ]; + config = { + startup = [ + { + command = "firefox-esr --kiosk c3nav.de"; + } + ]; + fonts = { + names = [ "Noto Sans" ]; + style = "regular"; + size = 30; + }; + }; extraConfig = '' set $ws1 c3nav default_border none - font pango: "Noto Sans" regular 30 exec swaymsg "workspace $ws1;exec firefox-esr --name=c3nav --no-remote -P "terminal" https://c3nav.de; workspace $ws2; exec firefox-esr --name=fahrplan --no-remote -P "default" https://fahrplan.events.ccc.de/congress/2024/fahrplan/schedule/" include /etc/sway/config.d/* '';