+ webapp launcher, hyprland config changes

This commit is contained in:
m3tam3re
2025-08-28 20:28:10 +02:00
parent 9e44101016
commit 7a3f368aca
7 changed files with 243 additions and 486 deletions

View File

@ -0,0 +1,30 @@
{
config,
lib,
pkgs,
...
}:
with lib; let
cfg = config.features.desktop.wayland;
in {
options.features.desktop.wayland.enable = mkEnableOption "wayland extra tools and config";
config = mkIf cfg.enable {
home.packages = with pkgs; [
grim
kdePackages.xwaylandvideobridge
hyprcursor
hyprlock
hyprpaper
qt6.qtwayland
slurp
waypipe
wl-clipboard
wf-recorder
wl-mirror
wlogout
wtype
ydotool
];
};
}