hyprland now uses

This commit is contained in:
kenji
2025-07-08 22:01:56 -05:00
parent 95f95e208d
commit 658d489fd5
2 changed files with 14 additions and 2 deletions
+11
View File
@@ -0,0 +1,11 @@
{
pkgs,
inputs,
...
}: {
programs.hyprland = {
enable = true;
package = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.hyprland;
portalPackage = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.xdg-desktop-portal-hyprland;
};
}
+3 -2
View File
@@ -11,7 +11,7 @@
"$mod" = "SUPER";
"$term" = "kitty --single-instance";
"$browser" = "firefox";
"$bar" = "qs -c caelestia";
# "$bar" = "qs -c caelestia";
"$wsaction" = "fish -c ./scripts/wsaction.fish";
monitor = myConfig.nixos.Hyprland.monitors;
@@ -195,7 +195,8 @@
i: let
ws = i + 1;
in [
"$mod, ${toString ws}, exec, $wsaction workspace, ${toString ws}"
"$mod, ${toString ws}, workspace, ${toString ws}"
# "$mod, ${toString ws}, exec, $wsaction workspace, ${toString ws}"
"$mod SHIFT, ${toString ws}, movetoworkspace, ${toString ws}"
]
)