nicks-nix-config/modules/hyprland.nix

63 lines
1.3 KiB
Nix
Raw Normal View History

2023-10-23 20:11:02 -07:00
{config, pkgs, osConfig, ...}:
2023-10-22 19:31:56 -07:00
let
in
{
2023-10-23 17:59:48 -07:00
home.packages = with pkgs; [
swww
];
wayland.windowManager.hyprland = {
enable = true;
package = pkgs.hyprland;
# Whether to enable XWayland
xwayland.enable = true;
# Optional
# Whether to enable hyprland-session.target on hyprland startup
systemd.enable = true;
# Whether to enable patching wlroots for better Nvidia support
enableNvidiaPatches = true;
2023-10-23 20:11:02 -07:00
extraConfig = if (osConfig.networking.hostName == "NicksNixDesktop") then
''
monitor=DP-2, 2560x1440@144, 1920x0, 1
monitor=DP-3, 1920x1080@60, 0x360,1
''
else ''
'';
2023-10-23 17:59:48 -07:00
settings = {
exec-once = [
"${pkgs.swww}/bin/swww init & sleep 0.5 & ${pkgs.swww}/bin/swww /home/nixolas/Downloads/RecountERD.png"
];
decoration = {
shadow_offset = "0 5";
"col.shadow" = "rgba(00000099)";
2023-10-22 19:31:56 -07:00
};
2023-10-23 17:59:48 -07:00
"$mod" = "SUPER";
bindm = [
# mouse movements
"$mod, mouse:272, movewindow"
"$mod, mouse:273, resizewindow"
"$mod ALT, mouse:272, resizewindow"
];
bind = [
2023-10-23 21:19:39 -07:00
"$mod, RETURN, exec, kitty"
2023-10-23 20:11:02 -07:00
"$mod, r, exec, rofi -show run window"
"$mod, q, killactive"
"$mod_SHIFT, p, exit"
2023-10-23 17:59:48 -07:00
# "$mod, Q, exec, firefox"
];
2023-10-22 19:31:56 -07:00
};
2023-10-23 17:59:48 -07:00
};
2023-10-22 19:31:56 -07:00
}