From e482c7bb88bc22f5b310b7419fa572700a538b21 Mon Sep 17 00:00:00 2001 From: Lilith Date: Tue, 18 Mar 2025 18:08:25 +0100 Subject: [PATCH] lilith-pc merge conflict --- home/lilith/firefox/default.nix | 2 +- home/lilith/hyprpanel.nix | 42 +++++++++++++++++++++++++++++++++ 2 files changed, 43 insertions(+), 1 deletion(-) diff --git a/home/lilith/firefox/default.nix b/home/lilith/firefox/default.nix index a4b2831d..2c712cd3 100644 --- a/home/lilith/firefox/default.nix +++ b/home/lilith/firefox/default.nix @@ -1,7 +1,7 @@ {zen-browser, system, pkgs, lib, ...}: { imports = [ zen-browser.homeManagerModules.zen-browser ]; - # home.file.".mozilla/native-messaging-hosts".source = lib.mkForce "/home/lilith/.mozilla/native-messaging-hosts"; + home.file.".mozilla/native-messaging-hosts".source = lib.mkForce "/home/lilith/.mozilla/native-messaging-hosts"; programs.zen-browser = { enable = true; diff --git a/home/lilith/hyprpanel.nix b/home/lilith/hyprpanel.nix index 5d63f54a..ca9e4cba 100644 --- a/home/lilith/hyprpanel.nix +++ b/home/lilith/hyprpanel.nix @@ -6,5 +6,47 @@ overlay.enable = true; hyprland.enable = true; + + layout."*" = { + left = [ "dashboard" "workspaces" "windowtitle"]; + middle = [ "media" ]; + right = [ "volume" "network" "bluetooth" "systray" "clock" "battery" "notifications"]; + }; + + settings = { + bar = { + clock.format = "%F %H:%M"; + + battery.label = true; + + launcher.icon = ""; + + workspaces = { + ignored = "-.+"; + show_numbered = true; + }; + }; + + menus.dashboard = { + directories.enabled = false; + powermenu.logout = "hyprlock"; + shortcuts.enabled = false; + stats.enable_gpu = true; + }; + + theme = { + bar.transparent = true; + + font.name = "JetBrains Mono NF"; + + matugen = true; + matugen_settings = { + # contrast = 0.3; + variation = "standard_3"; + }; + }; + wallpaper.enable = true; + wallpaper.image = "${../../wallpapers/default.jpg}"; + }; }; }