{ config, pkgs, ... }: let mod = "Mod4"; in { services.dbus.packages = with pkgs; [ gnome2.GConf gnome3.dconf ]; services.dbus.socketActivated = true; programs.sway.enable = true; systemd.defaultUnit = "graphical.target"; home-manager.users.cyryl = {...}: { programs.mako.enable = true; imports = [ ]; home.sessionVariables = { }; home.packages = with pkgs; [ wl-clipboard clipman wofi ]; wayland.windowManager.sway = { enable = true; wrapperFeatures.base = true; wrapperFeatures.gtk = true; config = { modifier = "${mod}"; menu = "${pkgs.wofi}/bin/wofi --show drun,run"; terminal = "${pkgs.alacritty}/bin/alacritty"; startup = [ { command = "${pkgs.wl-clipboard}/bin/wl-paste -t text --watch ${pkgs.clipman}/bin/clipman store"; } { command = "${pkgs.clipman}/bin/clipman restore"; } ]; output.eDP-1.scale = "1.7"; input."1:1:AT_Translated_Set_2_keyboard" = { xkb_layout = "pl"; xkb_options = "caps:ctrl_modifier"; }; input."2:7:SynPS/2_Synaptics_TouchPad" = { tap = "enabled"; }; keybindings = { "${mod}+Shift+e" = "exit"; "${mod}+Shift+c" = "reload"; "${mod}+Shift+r" = "restart"; "${mod}+Shift+l" = "exec physlock -d"; "${mod}+Return" = "exec ${pkgs.alacritty}/bin/alacritty"; "XF86AudioRaiseVolume" = "exec --no-startup-id pactl set-sink-volume @DEFAULT_SINK@ +5%"; "XF86AudioLowerVolume" = "exec --no-startup-id pactl set-sink-volume @DEFAULT_SINK@ -5%"; "XF86AudioMute" = "exec --no-startup-id pactl set-sink-mute @DEFAULT_SINK@ toggle"; "XF86AudioMicMute" = "exec --no-startup-id pactl set-source-mute @DEFAULT_SOURCE@ toggle"; "XF86MonBrightnessUp" = "exec light -s sysfs/backlight/intel_backlight -A 5"; "XF86MonBrightnessDown" = "exec light -s sysfs/backlight/intel_backlight -U 5"; "Print" = "exec ${pkgs.gnome3.gnome-screenshot}/bin/gnome-screenshot -i"; "${mod}+r" = "exec ${pkgs.wofi}/bin/wofi --show drun,run"; "${mod}+c" = "exec ${pkgs.clipman}/bin/clipman pick -t wofi"; "${mod}+q" = "kill"; "${mod}+f" = "fullscreen toggle"; "${mod}+h" = "focus left"; "${mod}+j" = "focus down"; "${mod}+k" = "focus up"; "${mod}+l" = "focus right"; "${mod}+1" = "workspace 1"; "${mod}+2" = "workspace 2"; "${mod}+3" = "workspace 3"; "${mod}+4" = "workspace 4"; "${mod}+5" = "workspace 5"; "${mod}+6" = "workspace 6"; "${mod}+7" = "workspace 7"; "${mod}+8" = "workspace 8"; "${mod}+9" = "workspace 9"; "${mod}+0" = "workspace 10"; "${mod}+Shift+1" = "move container to workspace 1"; "${mod}+Shift+2" = "move container to workspace 2"; "${mod}+Shift+3" = "move container to workspace 3"; "${mod}+Shift+4" = "move container to workspace 4"; "${mod}+Shift+5" = "move container to workspace 5"; "${mod}+Shift+6" = "move container to workspace 6"; "${mod}+Shift+7" = "move container to workspace 7"; "${mod}+Shift+8" = "move container to workspace 8"; "${mod}+Shift+9" = "move container to workspace 9"; "${mod}+Shift+0" = "move container to workspace 10"; "${mod}+Ctrl+Left" = "move workspace to output left"; "${mod}+Ctrl+Right" = "move workspace to output right"; "${mod}+Ctrl+Up" = "move workspace to output up"; "${mod}+Ctrl+Down" = "move workspace to output down"; }; }; }; }; }