infrastructure/profiles/sway/sway.nix

8 lines
152 B
Nix

{ config, pkgs, lib, ... }:
{
programs.sway = {
enable = true;
extraPackages = with pkgs; lib.mkForce [ xwayland swaylock swayidle ];
};
}