Files
nixos-haus/modules/de/sway.nix
2025-11-17 23:02:44 +02:00

25 lines
399 B
Nix

{
config,
pkgs,
...
}: {
programs.sway = {
enable = true;
wrapperFeatures.gtk = true;
};
environment.systemPackages = with pkgs; [
libnotify
mako # Notification daemon for Sway
playerctl
pavucontrol
blueman
xorg.xhost
# Screenshots
grim
slurp
# Other Sway-specific packages
];
programs.light.enable = true; # For brightness control
}