feat(sway): add sway configuration

This commit is contained in:
514fpv 2024-01-04 11:48:30 +08:00
parent cc882bb3ee
commit 6e3d610c00
Signed by: koishi
SSH key fingerprint: SHA256:axz0uIzzY+5W19i7QOUuiw5LSqhKfCBKPf3L4xFRxLw
2 changed files with 70 additions and 0 deletions

47
home/sway/home.nix Normal file
View file

@ -0,0 +1,47 @@
{ pkgs
, lib
, config
, ... }: with lib; mkIf config.passthrough.gui {
wayland.windowManager.sway = {
enable = true;
swaynag.enable = true;
config = {
modifier = "Mod4";
keybindings = let
modifier = config.wayland.windowManager.sway.config.modifier;
in mkOptionDefault {
XF86MonBrightnessUp = "light -A 5";
XF86MonBrightnessDown = "light -U 5";
"Control+Alt+l" = "exec ${pkgs.swaylock}/bin/swaylock -c 000000";
"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";
};
menu = "wofi -show drun -modi drun";
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";
} ];
gaps.inner = 12;
gaps.outer = 5;
# dodge the status bar
gaps.bottom = 0;
input."*".natural_scroll = "enabled";
input."type:touchpad".tap = "enabled";
output."*".bg = "${../../share/54345906_p0.jpg} fill";
};
};
}

23
home/sway/nixos.nix Normal file
View file

@ -0,0 +1,23 @@
{ pkgs
, lib
, config
, ... }: with lib; let
gui = with config.faucet.gui; ( enable && session );
in mkIf gui {
services.xserver.displayManager.sessionPackages = [
(pkgs.writeTextFile {
name = "sway-session";
destination = "/share/wayland-sessions/sway.desktop";
text = ''
[Desktop Entry]
Name=Sway
Comment=An i3-compatible Wayland compositor
Exec=sway --unsupported-gpu
Type=Application
'';
} // { providedSessions = [ pkgs.sway.meta.mainProgram ]; })
];
security.pam.services.swaylock = { };
programs.light.enable = true;
}