1
0
mirror of https://github.com/Andrey0189/nixos-config-reborn.git synced 2025-09-15 10:06:00 +03:00
Files
andrey_varnavskiy 232ad7917d add hebrew layout
2025-01-12 17:55:26 +05:00

121 lines
2.9 KiB
Nix

{
wayland.windowManager.hyprland = {
enable = true;
systemd.enable = true;
settings = {
env = [
# Hint Electron apps to use Wayland
"NIXOS_OZONE_WL,1"
"XDG_CURRENT_DESKTOP,Hyprland"
"XDG_SESSION_TYPE,wayland"
"XDG_SESSION_DESKTOP,Hyprland"
"QT_QPA_PLATFORM,wayland"
"XDG_SCREENSHOTS_DIR,$HOME/screens"
];
monitor = ",1920x1080@60,auto,1";
"$mainMod" = "SUPER";
"$terminal" = "alacritty";
"$fileManager" = "$terminal -e sh -c 'ranger'";
"$menu" = "wofi";
exec-once = [
"waybar"
"wl-paste --type text --watch cliphist store"
"wl-paste --type image --watch cliphist store"
];
general = {
gaps_in = 0;
gaps_out = 0;
border_size = 5;
"col.active_border" = "rgba(d65d0eff) rgba(98971aff) 45deg";
"col.inactive_border" = "rgba(3c3836ff)";
resize_on_border = true;
allow_tearing = false;
layout = "master";
};
decoration = {
rounding = 0;
active_opacity = 1.0;
inactive_opacity = 1.0;
shadow = {
enabled = false;
};
blur = {
enabled = false;
};
};
animations = {
enabled = false;
};
input = {
kb_layout = "us,ru,il";
kb_options = "grp:caps_toggle";
};
gestures = {
workspace_swipe = true;
workspace_swipe_invert = false;
workspace_swipe_forever = true;
};
dwindle = {
pseudotile = true;
preserve_split = true;
};
master = {
new_status = "slave";
new_on_top = true;
mfact = 0.5;
};
misc = {
force_default_wallpaper = 0;
disable_hyprland_logo = true;
};
windowrulev2 = [
"bordersize 0, floating:0, onworkspace:w[t1]"
"float,class:(mpv)|(imv)|(showmethekey-gtk)"
"move 990 60,size 900 170,pin,noinitialfocus,class:(showmethekey-gtk)"
"noborder,nofocus,class:(showmethekey-gtk)"
"workspace 3,class:(obsidian)"
"workspace 3,class:(zathura)"
"workspace 4,class:(com.obsproject.Studio)"
"workspace 5,class:(telegram)"
"workspace 5,class:(vesktop)"
"workspace 6,class:(teams-for-linux)"
"suppressevent maximize, class:.*"
"nofocus,class:^$,title:^$,xwayland:1,floating:1,fullscreen:0,pinned:0"
"opacity 0.0 override, class:^(xwaylandvideobridge)$"
"noanim, class:^(xwaylandvideobridge)$"
"noinitialfocus, class:^(xwaylandvideobridge)$"
"maxsize 1 1, class:^(xwaylandvideobridge)$"
"noblur, class:^(xwaylandvideobridge)$"
"nofocus, class:^(xwaylandvideobridge)$"
];
workspace = [
"w[tv1], gapsout:0, gapsin:0"
"f[1], gapsout:0, gapsin:0"
];
};
};
}