mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-25 17:11:53 -05:00
home/hyprland: nixify extraConfig
Some checks failed
nix-build / default-build (push) Has been cancelled
nix-build / fallarbor-build (push) Has been cancelled
nix-build / lavaridge-build (push) Has been cancelled
nix-build / mauville-build (push) Has been cancelled
nix-build / petalburg-build (push) Has been cancelled
nix-build / rustboro-build (push) Has been cancelled
nix-check / fmt-check (push) Has been cancelled
nix-check / eval-check (push) Has been cancelled
Some checks failed
nix-build / default-build (push) Has been cancelled
nix-build / fallarbor-build (push) Has been cancelled
nix-build / lavaridge-build (push) Has been cancelled
nix-build / mauville-build (push) Has been cancelled
nix-build / petalburg-build (push) Has been cancelled
nix-build / rustboro-build (push) Has been cancelled
nix-check / fmt-check (push) Has been cancelled
nix-check / eval-check (push) Has been cancelled
This commit is contained in:
parent
cdcce3d885
commit
09cea45f8e
|
@ -9,10 +9,23 @@ in {
|
||||||
config = lib.mkIf cfg.desktop.hyprland.enable {
|
config = lib.mkIf cfg.desktop.hyprland.enable {
|
||||||
wayland.windowManager.hyprland = {
|
wayland.windowManager.hyprland = {
|
||||||
enable = true;
|
enable = true;
|
||||||
settings =
|
settings = import ./settings.nix {inherit config lib pkgs;};
|
||||||
import ./settings.nix {inherit config lib pkgs;};
|
|
||||||
|
|
||||||
extraConfig = ''
|
extraConfig = let
|
||||||
|
moveMonitorBinds =
|
||||||
|
lib.attrsets.mapAttrsToList (
|
||||||
|
key: direction: "bind=CONTROL,${key},movecurrentworkspacetomonitor,${direction}"
|
||||||
|
)
|
||||||
|
cfg.desktop.hyprland.windowManagerBinds;
|
||||||
|
|
||||||
|
moveWindowBinds =
|
||||||
|
lib.attrsets.mapAttrsToList (
|
||||||
|
key: direction: "bind=,${key},movewindow,${direction}"
|
||||||
|
)
|
||||||
|
cfg.desktop.hyprland.windowManagerBinds;
|
||||||
|
|
||||||
|
moveWorkspaceBinds = builtins.map (x: "bind=,${toString x},workspace,${toString x}") [1 2 3 4 5 6 7 8 9];
|
||||||
|
in ''
|
||||||
submap=resize
|
submap=resize
|
||||||
binde=,down,resizeactive,0 10
|
binde=,down,resizeactive,0 10
|
||||||
binde=,left,resizeactive,-10 0
|
binde=,left,resizeactive,-10 0
|
||||||
|
@ -26,27 +39,9 @@ in {
|
||||||
submap=reset
|
submap=reset
|
||||||
|
|
||||||
submap=move
|
submap=move
|
||||||
# Move window with keys ++
|
${lib.strings.concatLines moveMonitorBinds}
|
||||||
# Move workspaces across monitors with CONTROL + keys.
|
${lib.strings.concatLines moveWindowBinds}
|
||||||
${
|
${lib.strings.concatLines moveWorkspaceBinds}
|
||||||
lib.strings.concatLines
|
|
||||||
(
|
|
||||||
lib.attrsets.mapAttrsToList (key: direction: ''
|
|
||||||
bind = , ${key}, movewindow, ${direction}
|
|
||||||
bind = CONTROL, ${key}, movecurrentworkspacetomonitor, ${direction}
|
|
||||||
'')
|
|
||||||
cfg.desktop.hyprland.windowManagerBinds
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
# Move active window to a workspace with [1-9]
|
|
||||||
${
|
|
||||||
lib.strings.concatMapStringsSep "\n"
|
|
||||||
(x: "bind = , ${toString x}, movetoworkspace, ${toString x}")
|
|
||||||
[1 2 3 4 5 6 7 8 9]
|
|
||||||
}
|
|
||||||
|
|
||||||
# hyprnome
|
|
||||||
bind=,comma,exec,${lib.getExe pkgs.hyprnome} --previous --move
|
bind=,comma,exec,${lib.getExe pkgs.hyprnome} --previous --move
|
||||||
bind=,period,exec,${lib.getExe pkgs.hyprnome} --move
|
bind=,period,exec,${lib.getExe pkgs.hyprnome} --move
|
||||||
bind=,escape,submap,reset
|
bind=,escape,submap,reset
|
||||||
|
|
Loading…
Reference in a new issue