Files
nixos-haus/hosts/puter/de/sway.nix

21 lines
348 B
Nix

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