mio-ops/profiles/sway.nix

17 lines
226 B
Nix

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