add hyprpanel config

This commit is contained in:
2025-11-22 04:15:29 +03:00
parent 60aeff2748
commit 19ee044f29
5 changed files with 132 additions and 17 deletions
+7 -7
View File
@@ -1,4 +1,4 @@
{ config, pkgs, ... }:
{ config, pkgs, lib, ... }:
# TODO:
# - configure comands like hyprpaper, waybar, etc.
@@ -27,10 +27,15 @@
];
programs.hyprpanel = {
enable = true;
systemd.enable = true;
settings = builtins.fromJSON (builtins.readFile ./hyprpanel.json);
};
programs.fuzzel.enable = true;
home.file.".config/hypr/scripts" = {
source = ./scripts;
recursive = true;
};
wayland.windowManager.hyprland = {
enable = true;
plugins = [ pkgs.hyprlandPlugins.hyprexpo ];
@@ -216,9 +221,4 @@
};
};
home.file.".config/hypr/scripts" = {
source = ./scripts;
recursive = true;
};
}