Files
nixos-haus/hosts/puter/de/sway.nix
2025-08-06 19:34:52 +03:00

19 lines
321 B
Nix

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