nixos/home/sway/home.nix

58 lines
1.5 KiB
Nix
Raw Normal View History

2025-01-13 11:52:09 +08:00
{
pkgs,
lib,
config,
...
}:
with lib;
mkIf config.passthrough.gui {
2024-01-04 11:48:30 +08:00
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";
2025-01-13 11:52:09 +08:00
keybindings =
let
modifier = config.wayland.windowManager.sway.config.modifier;
in
mkOptionDefault {
XF86MonBrightnessUp = "light -A 5";
XF86MonBrightnessDown = "light -U 5";
2024-01-04 11:48:30 +08:00
2025-01-13 11:52:09 +08:00
"Control+Alt+l" = "exec swaylock -f --grace 0";
"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";
"${modifier}+Home" = "exec ${pkgs.pavucontrol}/bin/pavucontrol";
2024-01-04 11:48:30 +08:00
};
2025-01-13 11:52:09 +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";
}
];
2024-01-04 11:48:30 +08:00
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
};
};
}