Files
nixos/modules/sway.nix
T
2025-07-10 17:27:36 +02:00

30 lines
390 B
Nix

{ config, lib, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
xwayland
ly
sway
swaylock
swayidle
waybar
nwg-displays
# screenshot stuff
grim
slurp
wl-clipboard
mako
];
services.displayManager.ly.enable = true;
programs.xwayland.enable = true;
programs.sway = {
enable = true;
wrapperFeatures.gtk = true;
};
}