flake/home/applications/sway/default.nix

162 lines
5.4 KiB
Nix
Raw Normal View History

2023-10-10 07:25:31 +00:00
{
config,
pkgs,
2023-11-04 12:52:55 +00:00
lib,
2024-03-02 12:50:51 +00:00
inputs,
...
2024-07-07 12:26:31 +00:00
}: let
# https://www.pixiv.net/en/artworks/49983419
image = pkgs.fetchurl {
url = "https://i.pximg.net/img-original/img/2015/04/23/12/43/35/49983419_p0.jpg";
hash = "sha256-JZ5VmsjVjZfHXpx3JxzAyYzZppZmgH38AiAA+B0TDiw=";
curlOptsList = ["-e" "https://www.pixiv.net/"];
};
# Crop 100px on top and bottom
background = pkgs.runCommandLocal "49983419_p0.jpg" {} ''
${lib.getExe pkgs.imagemagick} convert ${image} -crop 3500x1600+0+100 $out
'';
in {
imports = [
2024-01-16 05:32:25 +00:00
../i3status-rust
2024-02-02 12:24:55 +00:00
../mako
2023-11-28 05:40:22 +00:00
../rofi
../swayidle
../swaylock
];
2024-06-14 23:25:48 +00:00
home.sessionVariables = {
NIXOS_OZONE_WL = "1"; # let electron applications use wayland
};
home.packages = with pkgs; [
wl-clipboard
pwvucontrol
];
# remove csd window buttons
# https://github.com/localsend/localsend/blob/2457acd8a7412723b174672d174e4853dccd7d99/app/linux/my_application.cc#L45
home.sessionVariables.GTK_CSD = 0;
dconf.settings."org/gnome/desktop/wm/preferences"."button-layout" = "icon,appmenu:";
2024-03-26 08:49:35 +00:00
services.cliphist.enable = true;
services.udiskie.enable = true;
2023-11-04 12:52:55 +00:00
home.sessionVariables = {
2024-05-30 17:55:40 +00:00
# NOTE: don't use "wayland" in GTK_IM_MODULE! it will crash X11 electron apps
GTK_IM_MODULE = lib.mkForce ""; # use text-input-v3
QT_IM_MODULE = lib.mkForce ""; # use text-input-v3
2023-11-04 12:52:55 +00:00
};
2023-10-10 07:25:31 +00:00
wayland.windowManager.sway = {
enable = true;
2024-04-23 08:08:11 +00:00
checkConfig = false; # wtf?
2024-05-30 17:55:40 +00:00
extraOptions = ["--unsupported-gpu"];
2023-10-10 07:25:31 +00:00
wrapperFeatures.gtk = true;
2023-12-08 15:44:35 +00:00
systemd.xdgAutostart = true;
2023-10-10 07:25:31 +00:00
config = {
2024-01-16 08:56:10 +00:00
### Startup
startup = [
{command = "systemctl --user import-environment PATH";}
];
2023-10-10 07:25:31 +00:00
### Visuals
2024-07-07 12:26:31 +00:00
output."*".bg = "${background} fill";
2023-12-08 15:44:35 +00:00
bars = [
2024-01-16 05:32:25 +00:00
{
statusCommand = "${lib.getExe pkgs.i3status-rust} $HOME/.config/i3status-rust/config-default.toml";
position = "top";
extraConfig = ''
icon_theme ${config.gtk.iconTheme.name}
'';
}
2023-12-08 15:44:35 +00:00
];
2023-10-10 07:25:31 +00:00
### Inputs
2024-03-06 08:48:01 +00:00
input = {
"*" = {
accel_profile = "flat";
natural_scroll = "enabled";
};
2023-10-10 07:25:31 +00:00
2024-03-06 08:48:01 +00:00
"type:touchpad" = {
tap = "enabled";
drag = "enabled";
dwt = "disabled";
};
"type:keyboard" = {
2024-04-01 20:09:59 +00:00
xkb_layout = "us";
2024-03-06 08:48:01 +00:00
xkb_options = "caps:escape";
2024-04-01 20:09:59 +00:00
xkb_variant = "dvorak";
2024-03-06 08:48:01 +00:00
};
2023-10-10 07:25:31 +00:00
};
### Keybinds
modifier = "Mod4";
keybindings = let
2023-12-02 10:42:59 +00:00
inherit (config.wayland.windowManager.sway.config) modifier;
2024-03-06 08:46:24 +00:00
screenshot = lib.getExe inputs.self.packages.${pkgs.stdenv.hostPlatform.system}.scripts.screenshot;
2023-12-30 15:42:09 +00:00
in
{
### Sway itself
# Window
"${modifier}+s" = "split toggle";
"${modifier}+v" = "floating toggle";
2023-12-30 16:18:02 +00:00
"${modifier}+f" = "fullscreen toggle";
2024-01-27 22:31:43 +00:00
"${modifier}+r" = "mode resize";
2023-12-30 15:42:09 +00:00
"${modifier}+q" = "kill";
2023-12-30 16:18:02 +00:00
"${modifier}+Shift+e" = "exec swaynag -t warning -m 'You pressed the exit shortcut. Do you really want to exit sway? This will end your Wayland session.' -b 'Yes, exit sway' 'swaymsg exit'";
2023-10-10 07:25:31 +00:00
2023-12-30 15:42:09 +00:00
# Move around
"${modifier}+h" = "focus left";
"${modifier}+j" = "focus down";
"${modifier}+k" = "focus up";
"${modifier}+l" = "focus right";
2024-01-27 22:31:43 +00:00
"${modifier}+Shift+h" = "move left";
"${modifier}+Shift+j" = "move down";
"${modifier}+Shift+k" = "move up";
"${modifier}+Shift+l" = "move right";
2023-10-10 07:25:31 +00:00
2023-12-30 15:42:09 +00:00
### Execute other stuff
# Launch applications
2024-06-23 07:31:24 +00:00
"${modifier}+Return" = "exec ${lib.getExe pkgs.foot}";
2023-12-30 15:42:09 +00:00
"${modifier}+w" = "exec ${pkgs.xdg-utils}/bin/xdg-open http:";
"${modifier}+e" = "exec ${pkgs.xdg-utils}/bin/xdg-open ~";
2023-10-10 07:25:31 +00:00
2023-12-30 15:42:09 +00:00
# Rofi
2024-01-02 22:22:55 +00:00
"${modifier}+d" = "exec rofi -show drun -show-icons -icon-theme ${config.gtk.iconTheme.name}";
"${modifier}+Shift+d" = "exec ${lib.getExe pkgs.cliphist} list | rofi -dmenu | ${lib.getExe pkgs.cliphist} decode | ${pkgs.wl-clipboard}/bin/wl-copy";
2024-01-27 22:31:43 +00:00
"${modifier}+Shift+Semicolon" = ''exec rofi -modi "power-menu:rofi-power-menu --confirm=reboot/shutdown" -show power-menu'';
2023-10-10 07:25:31 +00:00
2023-12-30 15:42:09 +00:00
# Screenshot
2024-03-02 12:50:51 +00:00
"${modifier}+Shift+s" = "exec ${screenshot} region";
"Print" = "exec ${screenshot} fullscreen";
"Print+Control" = "exec ${screenshot} swappy";
2023-10-10 07:25:31 +00:00
2023-12-30 15:42:09 +00:00
# Fn keys
2024-02-02 12:49:19 +00:00
"XF86MonBrightnessUp" = "exec ${lib.getExe pkgs.brightnessctl} set 5%+";
"XF86MonBrightnessDown" = "exec ${lib.getExe pkgs.brightnessctl} set 5%-";
"XF86AudioRaiseVolume" = "exec ${lib.getExe pkgs.pamixer} -i5";
"XF86AudioLowerVolume" = "exec ${lib.getExe pkgs.pamixer} -d5";
"XF86AudioMute" = "exec ${lib.getExe pkgs.pamixer} -t";
2024-05-30 18:13:15 +00:00
"XF86AudioPlay" = "exec ${lib.getExe pkgs.playerctl} play-pause";
2023-12-30 15:42:09 +00:00
"XF86AudioPrev" = "exec ${lib.getExe pkgs.playerctl} previous";
"XF86AudioNext" = "exec ${lib.getExe pkgs.playerctl} next";
"XF86AudioStop" = "exec ${lib.getExe pkgs.playerctl} stop";
}
//
# workspace binds
builtins.listToAttrs (builtins.concatMap (x: [
{
name = "${modifier}+${x}";
value = "workspace ${x}";
}
{
name = "${modifier}+Shift+${x}";
value = "move container to workspace ${x}";
}
]) (builtins.genList (x: toString (x + 1)) 9));
2023-10-10 07:25:31 +00:00
};
};
}