mio-ops/profiles/sway.nix
2021-11-16 17:53:38 +10:00

11 lines
192 B
Nix

# Configuration the Sway window manager
{ config, pkgs, ... }:
{
programs.sway = {
enable = true;
extraPackages = with pkgs; [ alacritty dmenu swayidle swaylock xwayland ];
};
}