25 lines
399 B
Nix
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
|
|
}
|