nixos/home/sway/home.nix

49 lines
1.4 KiB
Nix
Raw Normal View History

2024-01-04 11:48:30 +08:00
{ pkgs
, lib
, config
, ... }: with lib; mkIf config.passthrough.gui {
wayland.windowManager.sway = {
enable = true;
2024-01-04 14:21:47 +08:00
wrapperFeatures.base = true;
wrapperFeatures.gtk = true;
2024-01-04 11:48:30 +08:00
swaynag.enable = true;
config = {
2024-02-13 11:26:48 +08:00
defaultWorkspace = "workspace number 1";
2024-01-04 11:48:30 +08:00
modifier = "Mod4";
keybindings = let
modifier = config.wayland.windowManager.sway.config.modifier;
in mkOptionDefault {
XF86MonBrightnessUp = "light -A 5";
XF86MonBrightnessDown = "light -U 5";
2024-02-14 12:33:51 +08:00
"Control+Alt+l" = "exec swaylock -f --grace 0";
2024-01-04 11:48:30 +08:00
"Print" = "exec ${pkgs.grim}/bin/grim - | ${pkgs.wl-clipboard}/bin/wl-copy";
"${modifier}+Print" = "exec ${pkgs.grim}/bin/grim -g \"$(${pkgs.slurp}/bin/slurp)\" - | ${pkgs.wl-clipboard}/bin/wl-copy";
"${modifier}+q" = "exec google-chrome-stable";
2024-01-05 10:59:21 +08:00
"${modifier}+Home" = "exec ${pkgs.pavucontrol}/bin/pavucontrol";
2024-01-04 11:48:30 +08:00
};
bars = [ {
mode = "dock";
position = "bottom";
workspaceButtons = true;
workspaceNumbers = true;
statusCommand = "${pkgs.i3status}/bin/i3status";
fonts = {
names = [ "monospace" ];
size = 8.0;
};
trayOutput = "primary";
# sets transparency
colors.background = "00000000";
} ];
input."*".natural_scroll = "enabled";
input."type:touchpad".tap = "enabled";
2024-01-21 20:48:59 +08:00
output."*".bg = "#000000 solid_color";
2024-01-04 11:48:30 +08:00
};
};
}